This commit is contained in:
Till 2024-12-03 23:34:37 +01:00
parent 0034b1dd93
commit 22c9b65ae9
7 changed files with 70 additions and 19 deletions

View file

@ -22,6 +22,7 @@
./system/desktop.nix
./system/hardware-nova.nix
./system/gnome.nix
./system/steam.nix
./system/btrbk.nix
./system/yubikey.nix
./system/alt.nix
@ -43,6 +44,20 @@
];
};
ernst = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [
{
networking.hostName = "ernst";
}
./system
./system/hardware-ernst.nix
./system/desktop.nix
./system/plasma.nix
./system/laura.nix
];
};
romulus = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [
@ -98,6 +113,13 @@
./home/alt.nix
];
};
"lisa@ernst" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux.extend inputs.nur.overlay;
extraSpecialArgs = { inherit inputs; };
modules = [
./home/lisa.nix
];
};
};
};
}