mirror of
https://github.com/smg1024/homelab.git
synced 2026-05-22 20:32:58 +09:00
20 lines
437 B
Nix
20 lines
437 B
Nix
{ ... }:
|
|
|
|
{
|
|
# Enable these imports after collecting disk IDs and generated hardware config
|
|
# during the NixOS installer phase.
|
|
# imports = [
|
|
# ./hardware-configuration.nix
|
|
# ./disko.nix
|
|
# ];
|
|
|
|
networking.hostName = "midgard";
|
|
|
|
services.logind.settings.Login = {
|
|
HandleLidSwitch = "ignore";
|
|
HandleLidSwitchExternalPower = "ignore";
|
|
HandleLidSwitchDocked = "ignore";
|
|
};
|
|
|
|
system.stateVersion = "25.11";
|
|
}
|