From f38614955092f1908aa3816d1b72528b562a38c9 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Fri, 7 Jan 2022 08:52:30 +0100 Subject: [PATCH] home: wm: change default screen-lock timeout 5 minutes is too short. --- home/wm/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/wm/default.nix b/home/wm/default.nix index eae9f14..1d5a371 100644 --- a/home/wm/default.nix +++ b/home/wm/default.nix @@ -78,7 +78,7 @@ in timeout = mkOption { type = types.ints.between 1 60; - default = 5; + default = 15; example = 1; description = "Inactive time interval to lock the screen automatically"; };