refactor(hm): move some hm settings into flake.nix

This commit is contained in:
matt1432 2023-09-30 02:05:37 -04:00
parent 0cec51bc54
commit 6806471b24
2 changed files with 2 additions and 2 deletions

View file

@ -26,6 +26,8 @@
./configuration.nix ./configuration.nix
home-manager.nixosModules.home-manager { home-manager.nixosModules.home-manager {
home-manager.extraSpecialArgs = attrs; home-manager.extraSpecialArgs = attrs;
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
} }
]; ];
}; };

View file

@ -13,8 +13,6 @@
extraGroups = [ "wheel" "input" "uinput" "adm" "mlocate" "video" "libvirtd" ]; extraGroups = [ "wheel" "input" "uinput" "adm" "mlocate" "video" "libvirtd" ];
}; };
home-manager.useUserPackages = true;
home-manager.useGlobalPkgs = true;
programs.dconf.enable = true; programs.dconf.enable = true;
############################################################################# #############################################################################