Clean up that root directory!

This commit is contained in:
Benson Chu 2023-12-16 22:40:07 -06:00
parent 51db51c5b1
commit b5d97eaa4b
4 changed files with 10 additions and 4 deletions

View file

@ -32,6 +32,7 @@
signal-desktop
parsec-bin
discord
pcmanfm
vim
]

View file

@ -5,12 +5,12 @@
{ config, pkgs, ... }:
let
commonPackages = import ../../common-packages.nix { inherit pkgs; };
commonPackages = import ../../common/packages.nix { inherit pkgs; };
in
{
imports =
[
../../common-configuration.nix
../../common/configuration.nix
# Include the results of the hardware scan.
./hardware-configuration.nix
];
@ -43,6 +43,11 @@ in
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
# Configure keymap in X11

View file

@ -1,13 +1,13 @@
{ config, pkgs, ... }:
let
commonPackages = import ../../common-packages.nix { inherit pkgs; };
commonPackages = import ../../common/packages.nix { inherit pkgs; };
in
{
imports =
[
# ./home-git-repos.nix
../../common-configuration.nix
../../common/configuration.nix
# Include the results of the hardware scan.
./hardware-configuration.nix
];