Commit 828bd1e3129a
Changed files (2)
modules
profiles
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;
};