mirror of
https://github.com/smg1024/homelab.git
synced 2026-05-22 20:32:58 +09:00
16 lines
309 B
Nix
16 lines
309 B
Nix
{...}: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./disko.nix
|
|
];
|
|
|
|
networking.hostName = "yggdrasil";
|
|
|
|
services.logind.settings.Login = {
|
|
HandleLidSwitch = "ignore";
|
|
HandleLidSwitchExternalPower = "ignore";
|
|
HandleLidSwitchDocked = "ignore";
|
|
};
|
|
|
|
system.stateVersion = "25.11";
|
|
}
|