Clean up that root directory!
This commit is contained in:
parent
51db51c5b1
commit
b5d97eaa4b
4 changed files with 10 additions and 4 deletions
|
|
@ -32,6 +32,7 @@
|
||||||
signal-desktop
|
signal-desktop
|
||||||
parsec-bin
|
parsec-bin
|
||||||
discord
|
discord
|
||||||
|
pcmanfm
|
||||||
|
|
||||||
vim
|
vim
|
||||||
]
|
]
|
||||||
|
|
@ -5,12 +5,12 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
commonPackages = import ../../common-packages.nix { inherit pkgs; };
|
commonPackages = import ../../common/packages.nix { inherit pkgs; };
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
[
|
[
|
||||||
../../common-configuration.nix
|
../../common/configuration.nix
|
||||||
# Include the results of the hardware scan.
|
# Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
];
|
];
|
||||||
|
|
@ -43,6 +43,11 @@ in
|
||||||
dataDir = "/home/benson/.config/syncthing/db"; # Folder for Syncthing's database
|
dataDir = "/home/benson/.config/syncthing/db"; # Folder for Syncthing's database
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nix.settings.experimental-features = "nix-command flakes";
|
||||||
|
|
||||||
|
virtualisation.virtualbox.host.enable = true;
|
||||||
|
users.extraGroups.vboxusers.members = [ "benson" ];
|
||||||
|
|
||||||
hardware.bluetooth.enable = true; # enables support for Bluetooth
|
hardware.bluetooth.enable = true; # enables support for Bluetooth
|
||||||
|
|
||||||
# Configure keymap in X11
|
# Configure keymap in X11
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
commonPackages = import ../../common-packages.nix { inherit pkgs; };
|
commonPackages = import ../../common/packages.nix { inherit pkgs; };
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
[
|
[
|
||||||
# ./home-git-repos.nix
|
# ./home-git-repos.nix
|
||||||
../../common-configuration.nix
|
../../common/configuration.nix
|
||||||
# Include the results of the hardware scan.
|
# Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
];
|
];
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue