diff options
| -rw-r--r-- | lass/1systems/helios/config.nix | 2 | ||||
| -rw-r--r-- | lass/3modules/screenlock.nix | 4 | 
2 files changed, 2 insertions, 4 deletions
diff --git a/lass/1systems/helios/config.nix b/lass/1systems/helios/config.nix index c4a171d86..e64cfbe79 100644 --- a/lass/1systems/helios/config.nix +++ b/lass/1systems/helios/config.nix @@ -168,8 +168,6 @@ with import <stockholm/lib>;      '')    ]; -  lass.screenlock.command = "${pkgs.i3lock}/bin/i3lock -i /home/lass/lock.png -t -f"; -    programs.adb.enable = true;    users.users.mainUser.extraGroups = [ "adbusers" "docker" ]; diff --git a/lass/3modules/screenlock.nix b/lass/3modules/screenlock.nix index e16ce9868..29c3861f2 100644 --- a/lass/3modules/screenlock.nix +++ b/lass/3modules/screenlock.nix @@ -14,7 +14,7 @@ let      enable = mkEnableOption "screenlock";      command = mkOption {        type = types.str; -      default = "${pkgs.i3lock}/bin/i3lock -i /var/lib/wallpaper/wallpaper -f"; +      default = "${pkgs.xlockmore}/bin/xlock -mode life1d -size 1";      };    }; @@ -28,7 +28,7 @@ let        serviceConfig = {          SyslogIdentifier = "screenlock";          ExecStart = cfg.command; -        Type = "forking"; +        Type = "simple";          User = "lass";        };      };  | 
