2024-11-05 08:11:22 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
nixos-config,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
nix.auto-update.specialisation = "graphical";
|
|
|
|
imports = [
|
|
|
|
"${nixos-config}/config/graphical.nix"
|
|
|
|
];
|
2024-11-06 10:01:54 +00:00
|
|
|
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
|
|
|
}
|