From 5fc1d3a86f63a9fb992b2608852432480eb43215 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Mon, 25 Nov 2024 17:37:27 -0800 Subject: [PATCH] fix(home): Actually disable screenlocking on generic linux --- modules/home/xorg/i3/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/home/xorg/i3/default.nix b/modules/home/xorg/i3/default.nix index 16100c2..d3f0447 100644 --- a/modules/home/xorg/i3/default.nix +++ b/modules/home/xorg/i3/default.nix @@ -30,7 +30,7 @@ in picom = enabled; polybar = enabled; # broken on non-nixOS - screen-locker = if isGenericLinux then enabled else disabled; + screen-locker = if isGenericLinux then disabled else enabled; }; };