add callisto

This commit is contained in:
beanigen 2025-04-14 16:17:19 +08:00
parent 8d7bb8cbee
commit 9a7651523b
No known key found for this signature in database
7 changed files with 323 additions and 2 deletions

View file

@ -43,6 +43,26 @@
}
];
};
nixosConfigurations."callisto" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./base/callisto
home-manager.nixosModules.home-manager {
home-manager.extraSpecialArgs = {
inherit inputs;
vars = {
isNixOS = true;
class = "desktop";
user = "maya";
useSyncthing = true;
};
};
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.maya = ./home;
}
];
};
nixosConfigurations."hypermac" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [