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: youwen
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
];