fix(odin,sif): logind configuration warning

This commit is contained in:
Filippo Berto 2025-10-17 11:17:13 +02:00
parent a31a45ff27
commit b0e7cdf488
No known key found for this signature in database
GPG key ID: F1D17F9BCEC62FBC
2 changed files with 4 additions and 4 deletions

View file

@ -450,7 +450,7 @@ in
"zoneminder" "zoneminder"
]; ];
}; };
logind.lidSwitch = "ignore"; logind.settings.Login.HandleLidSwitch = "ignore";
pipewire = { pipewire = {
enable = true; enable = true;
pulse.enable = true; pulse.enable = true;

View file

@ -73,9 +73,9 @@
}; };
# Disable auto handling of power button # Disable auto handling of power button
logind = { logind.settings.Login = {
powerKey = "ignore"; HandlePowerKey = "ignore";
lidSwitch = "hybrid-sleep"; HandleLidSwitch = "hybrid-sleep";
}; };
}; };