refactor: remove unused system attr

This commit is contained in:
Youwen Wu 2024-08-30 14:37:51 -07:00
parent 3902770719
commit 0563316200
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3
2 changed files with 4 additions and 14 deletions

View file

@ -86,27 +86,20 @@
nixosConfigurations = { nixosConfigurations = {
demeter = nixpkgs.lib.nixosSystem { demeter = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; specialArgs = {inherit inputs;};
specialArgs = {
inherit inputs;
};
modules = [ modules = [
./hosts/demeter ./hosts/demeter
]; ];
}; };
callisto = nixpkgs.lib.nixosSystem { callisto = nixpkgs.lib.nixosSystem {
specialArgs = { specialArgs = {inherit inputs;};
inherit inputs;
};
modules = [ modules = [
./hosts/callisto ./hosts/callisto
]; ];
}; };
adrastea = nixpkgs.lib.nixosSystem { adrastea = nixpkgs.lib.nixosSystem {
specialArgs = { specialArgs = {inherit inputs;};
inherit inputs;
};
modules = [ modules = [
./hosts/adrastea ./hosts/adrastea
]; ];

View file

@ -23,10 +23,7 @@
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true; home-manager.useUserPackages = true;
home-manager.backupFileExtension = "backup"; home-manager.backupFileExtension = "backup";
home-manager.extraSpecialArgs = { home-manager.extraSpecialArgs = {inherit inputs;};
inherit inputs;
inherit system;
};
home-manager.users.youwen = { home-manager.users.youwen = {
imports = [ imports = [
../../users/youwen/linux/desktop ../../users/youwen/linux/desktop