13 lines
242 B
Nix
13 lines
242 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./disks.nix
|
|
];
|
|
|
|
system.stateVersion = "25.05";
|
|
networking.hostId = "85eb2d89"; # "hestia" in base64->hex
|
|
|
|
modules.hardware.form.server = true;
|
|
boot.loader.timeout = 1;
|
|
}
|