home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 828bd1e3129a96849bea680b05c1699425d80969
parent de8c78af31bed4058bd2ed8a84c7e8520b2e8207
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Sun, 26 Apr 2020 14:57:33 +0200

Update lock script :P

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mmodules/profiles/desktop.nix | 2+-
Mmodules/profiles/i3.nix | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/profiles/desktop.nix b/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; }; diff --git a/modules/profiles/i3.nix b/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; };