phone(dconf): Limit idle delay to 1 minute

Might help with the phone turning on while pocketed.
This commit is contained in:
Donovan Glover 2024-07-21 13:11:55 -04:00
parent a35c91057c
commit 12accb0619
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -2,7 +2,7 @@
let
inherit (lib) mkIf mkForce;
inherit (lib.gvariant) mkTuple;
inherit (lib.gvariant) mkTuple mkUint32;
inherit (config.modules.system) username;
inherit (builtins) attrValues;
@ -61,6 +61,10 @@ in
show-battery-percentage = true;
};
"org/gnome/desktop/session" = {
idle-delay = mkUint32 60;
};
"org/gnome/desktop/input-sources" = {
sources = [
(mkTuple [ "xkb" "us" ])