nixos-servers/machines/warwick.nix
Pim Kunis 55b18ef450 Refactor storage module
Add talos and pikvm machines
2024-08-24 22:30:46 +02:00

14 lines
268 B
Nix

{
machines.warwick = {
arch = "aarch64-linux";
isRaspberryPi = true;
nixosModule = { lib, ... }: {
lab = {
storage.profile = "pi";
monitoring.server.enable = true;
tailscale.advertiseExitNode = true;
};
};
};
}