hosts: sets up dnsc-machine config

This commit is contained in:
Dennis Schoepf 2025-11-20 18:08:58 +01:00
parent 40f9c9b81e
commit 77b44f7f3c
4 changed files with 191 additions and 0 deletions

View file

@ -28,6 +28,14 @@
inherit (self) outputs;
in
{
nixosConfigurations.dnsc-machine = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs outputs; };
modules = [
./hosts/dnsc-machine
];
};
nixosConfigurations.dnsc-server = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs outputs; };