diff options
Diffstat (limited to 'lass/2configs/screenlock.nix')
| -rw-r--r-- | lass/2configs/screenlock.nix | 17 | 
1 files changed, 17 insertions, 0 deletions
diff --git a/lass/2configs/screenlock.nix b/lass/2configs/screenlock.nix new file mode 100644 index 000000000..237127f69 --- /dev/null +++ b/lass/2configs/screenlock.nix @@ -0,0 +1,17 @@ +{ pkgs, config, ... }: + +{ +  systemd.services.screenlock = { +    before = [ "sleep.target" ]; +    wantedBy = [ "sleep.target" ]; +    environment = { +      DISPLAY = ":${toString config.services.xserver.display}"; +    }; +    serviceConfig = { +      SyslogIdentifier = "screenlock"; +      ExecStart = "${pkgs.i3lock}/bin/i3lock -i /var/lib/wallpaper/wallpaper -f"; +      Type = "forking"; +      User = "lass"; +    }; +  }; +}  | 
