10 lines
244 B
Nix
10 lines
244 B
Nix
{ ... }: {
|
|
imports = [
|
|
./plasma-manager.nix
|
|
];
|
|
|
|
programs.plasma.powerdevil = {
|
|
# Temporary, prevents the monitor from turning on and displaying "artwork" that's super bright and annoying
|
|
autoSuspend.action = "nothing";
|
|
};
|
|
}
|