nixos configs

watt: ignore lid close

+3
+3
hosts/watt/configuration.nix
··· 23 23 boot.extraModulePackages = [ ]; 24 24 boot.kernelParams = [ 25 25 "nvme_core.default_ps_max_latency_us=0" 26 + "consoleblank=60" 26 27 ]; 27 28 hardware.cpu.intel.updateMicrocode = config.hardware.enableRedistributableFirmware; 28 29 29 30 boot.loader.systemd-boot.enable = true; 30 31 boot.loader.efi.canTouchEfiVariables = true; 32 + 33 + services.logind.lidSwitch = "ignore"; 31 34 32 35 networking.hostName = "watt"; 33 36