anagonia - xps m1330- alyx

This commit is contained in:
alyx 2025-07-02 17:23:53 +01:00
parent cdf5a8bee0
commit f6e7398e09
No known key found for this signature in database
4 changed files with 240 additions and 0 deletions

View file

@ -63,6 +63,28 @@
}
];
};
nixosConfigurations."anagonia" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
./base/anagonia
home-manager.nixosModules.home-manager {
home-manager.extraSpecialArgs = {
inherit inputs;
vars = {
isNixOS = true;
isBritish = true;
class = "lowspec";
user = "alyx";
useSyncthing = false;
};
};
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.alyx = ./home;
}
];
};
nixosConfigurations."apollo" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [