Commit 828bd1e3129a

Vincent Demeester <vincent@sbr.pm>
2020-04-26 14:57:33
Update lock script :P
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent de8c78a
Changed files (2)
modules
modules/profiles/desktop.nix
@@ -19,7 +19,7 @@ in
     profiles.desktop = {
       enable = mkEnableOption "Enable desktop profile";
       lockCmd = mkOption {
-        default = "${pkgs.slim}/bin/slimlock";
+        default = "-n ${dim-screen} -- ${pkgs.i3lock-color}/bin/i3lock-color -c 666666";
         description = "Lock command to use";
         type = types.str;
       };
modules/profiles/i3.nix
@@ -19,7 +19,7 @@ in
     profiles.i3 = {
       enable = mkEnableOption "Enable i3 profile";
       lockCmd = mkOption {
-        default = "slimlock";
+        default = "${pkgs.i3lock-color}/bin/i3lock-color -c 666666";
         description = "Lock command to use";
         type = types.str;
       };