This commit is contained in:
Till 2026-02-27 21:41:24 +01:00
parent 8099faa9ae
commit 312d6d63ef
23 changed files with 122 additions and 297 deletions

View file

@ -25,12 +25,31 @@
specialArgs = { inherit inputs; };
modules = [
./hosts/arielle
home-manager.nixosModules.home-manager {
home-manager = {
extraSpecialArgs = { inherit inputs; };
useGlobalPkgs = true;
useUserPackages = true;
users = {
till = {
imports = [
./home/on-server.nix
./users/till/home.nix
];
};
};
};
}
];
};
homer = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [ ./hosts/homer ];
modules = [
./hosts/homer
];
};
mila = nixpkgs.lib.nixosSystem {