homelab/hosts/midgard/default.nix
2026-05-22 18:34:20 +09:00

19 lines
458 B
Nix

{...}: {
# Enable these imports after collecting disk IDs and generated hardware config
# during the NixOS installer phase.
imports = [
./hardware-configuration.nix
./disko.nix
../../services/homepage.nix
];
networking.hostName = "midgard";
services.logind.settings.Login = {
HandleLidSwitch = "ignore";
HandleLidSwitchExternalPower = "ignore";
HandleLidSwitchDocked = "ignore";
};
system.stateVersion = "25.11";
}