universe/hosts/iris/default.nix
2025-01-09 14:12:35 -05:00

14 lines
293 B
Nix

{ ... }:
{
imports = [
./hardware-configuration.nix
./disks.nix
];
system.stateVersion = "25.05";
networking.hostId = "8ab8acd3"; # "iris00" in base64->hex
modules.hardware.form.server = true;
modules.backups.enable = false; # testing server
boot.loader.timeout = 1;
}