moved files around to give home-manager a dedicated folder in the root config dir

This commit is contained in:
Gabriella Bere 2024-08-22 18:44:22 +01:00
parent d739c60431
commit 588800292c
4 changed files with 11 additions and 197 deletions

View file

@ -18,9 +18,17 @@
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# default kernel causes issues with wpa_supplicant meaning shutdown times are > 10 mins updating to kernel 69 fixes this
# default kernel causes issues with wpa_supplicant meaning shutdown times are > 10 mins updating to kernel 69+ fixes this
boot.kernelPackages = pkgs.linuxKernel.packages.linux_6_10;
boot.kernelParams = [
"video=DP-2:1920x1080@144"
"video=DP-3:1920x1080@144"
"video=eDP-2:2560x1200@165"
];
boot.initrd.kernelModules = [ "amdgpu" ];
networking.hostName = "gabbielaptop"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
@ -100,7 +108,7 @@
home-manager = {
# extraSpeicalArgs = { inherit inputs; };
users = {
"blue" = import ./home.nix;
"blue" = import ../../home-manager/home.nix;
};
};