nixos-servers/machines/warwick/default.nix

21 lines
416 B
Nix

{
machines.warwick = {
facterReportPath = ./facter.json;
nixosModule = {inputs, ...}: {
imports = [inputs.nixos-hardware.nixosModules.raspberry-pi-4];
config = {
lab = {
storage.profile = "pi";
monitoring.server.enable = true;
tailscale = {
advertiseExitNode = true;
enable = true;
};
};
};
};
};
}