Add basic new server config

Includes sshd for easy connecting in local virtualized environment.
This commit is contained in:
JuliusFreudenberger 2025-08-08 16:56:37 +02:00
parent ac39ed944d
commit a7a3cbbc7a
5 changed files with 122 additions and 15 deletions

View file

@ -90,6 +90,18 @@
./hosts/backup-raspberrypi
];
};
server = nixpkgs.lib.nixosSystem rec {
system = "x86_64-linux";
specialArgs = {
inherit inputs outputs;
};
modules = [
./hosts/nixos-server-test
];
};
};
};
}