nixos-servers/machines/warwick.nix

19 lines
319 B
Nix
Raw Permalink Normal View History

2024-09-07 10:39:30 +00:00
{
machines.warwick = {
arch = "aarch64-linux";
isRaspberryPi = true;
nixosModule = { lib, ... }: {
lab = {
storage.profile = "pi";
monitoring.server.enable = true;
tailscale = {
advertiseExitNode = true;
enable = true;
};
};
};
};
}