diff options
author | sefidel <contact@sefidel.net> | 2023-09-03 11:01:18 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-09-03 11:01:18 +0900 |
commit | 561dc18764620acee289b89f3ccf48c09d32af45 (patch) | |
tree | b0bce289ea5acb6bf75148bbf1123de49ce08908 /home/profiles/gui | |
parent | 47b00a8a9a0d27c0a8002ed8c2fa63b2db668f6e (diff) | |
download | nixrc-561dc18764620acee289b89f3ccf48c09d32af45.tar.gz nixrc-561dc18764620acee289b89f3ccf48c09d32af45.zip |
fix(home/gui): swaylock: disable grace
Diffstat (limited to 'home/profiles/gui')
-rw-r--r-- | home/profiles/gui/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/profiles/gui/default.nix b/home/profiles/gui/default.nix index f6feafc..8ed2409 100644 --- a/home/profiles/gui/default.nix +++ b/home/profiles/gui/default.nix @@ -154,7 +154,7 @@ in # 4m30s { timeout = 270; command = "${pkgs.libnotify}/bin/notify-send -t 30000 'Locking screen in 30 seconds'"; } # 5m - { timeout = 300; command = "${lockCommand} --grace 5"; } + { timeout = 300; command = lockCommand; } # 10m { timeout = 600; |