removed commented lines

This commit is contained in:
John Lancaster
2024-12-08 13:10:51 -06:00
parent 7667011dbf
commit ee521c87eb

View File

@@ -56,13 +56,11 @@
homeConfigurations = { homeConfigurations = {
useGlobalPkgs = true; useGlobalPkgs = true;
"root@${hostname}" = home-manager.lib.homeManagerConfiguration { "root@${hostname}" = home-manager.lib.homeManagerConfiguration {
# pkgs = nixpkgs.legacyPackages.${system};
extraSpecialArgs = {inherit inputs outputs pkgs;}; extraSpecialArgs = {inherit inputs outputs pkgs;};
modules = [ ./home-manager/git.nix ]; modules = [ ./home-manager/git.nix ];
}; };
"${user}@${hostname}" = home-manager.lib.homeManagerConfiguration { "${user}@${hostname}" = home-manager.lib.homeManagerConfiguration {
# pkgs = nixpkgs.legacyPackages.${system};
extraSpecialArgs = {inherit inputs outputs pkgs;}; extraSpecialArgs = {inherit inputs outputs pkgs;};
modules = [ ./home-manager/home.nix ]; modules = [ ./home-manager/home.nix ];
}; };