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 = {
demeter = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
inherit inputs;
};
specialArgs = {inherit inputs;};
modules = [
./hosts/demeter
];
};
callisto = nixpkgs.lib.nixosSystem {
specialArgs = {
inherit inputs;
};
specialArgs = {inherit inputs;};
modules = [
./hosts/callisto
];
};
adrastea = nixpkgs.lib.nixosSystem {
specialArgs = {
inherit inputs;
};
specialArgs = {inherit inputs;};
modules = [
./hosts/adrastea
];

View file

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