nixos-config/machine/pc-installer/graphical.nix

23 lines
513 B
Nix
Raw Normal View History

2024-11-05 08:11:22 +00:00
{
config,
nixos-config,
...
}: {
nix.auto-update.specialisation = "graphical";
imports = [
"${nixos-config}/config/graphical.nix"
];
home-manager.users.darkkirb = {
# Turn off power management settings on AC power
# This is not very useful for an installer
programs.plasma.powerdevil = {
AC = {
autoSuspend.action = "nothing";
turnOffDisplay.idleTimeout = "never";
dimDisplay.enable = false;
powerProfile = "performance";
};
};
};
2024-11-05 08:11:22 +00:00
}