refactor(desktop): rename 'desktops' module to 'desktop'

This commit is contained in:
2026-06-02 09:56:15 +02:00
parent d7b5b77ddc
commit 84c89170e0
4 changed files with 0 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
{ lib, config, ... }:
{
options.desktop.logind.enable = lib.mkEnableOption "logind desktop settings";
config = lib.mkIf config.desktop.logind.enable {
services.logind.settings.Login = {
HandleLidSwitch = "suspend";
IdleAction = "suspend";
IdleActionSec = 1800;
};
};
}