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