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

23 lines
507 B
Nix
Raw Permalink Normal View History

2024-11-05 08:11:22 +00:00
{
nixos-config,
...
2024-11-09 14:02:26 +00:00
}:
{
2024-11-05 08:11:22 +00:00
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-06 10:05:06 +00:00
programs.plasma.kscreenlocker.autoLock = false;
};
2024-11-05 08:11:22 +00:00
}