Slock: Difference between revisions

From NixOS Wiki
imported>Fadenb
Created page with "== Setup == === cannot disable the out-of-memory killer for this process === slock requires root for accessing passwords and protecting itself from OOM killing. To fix this er..."
 
imported>Fadenb
No edit summary
Line 1: Line 1:
== Setup ==
== Setup ==
=== cannot disable the out-of-memory killer for this process ===
=== cannot disable the out-of-memory killer for this process ===
slock requires root for accessing passwords and protecting itself from OOM killing. To fix this error, add slock to your system packages and setuidPrograms by modifying your global configuration.nix like so:
slock requires root for accessing passwords and protecting itself from OOM killing. To fix this error, add slock to your system packages and <del>setuidPrograms</del> security.wrappers by modifying your global configuration.nix like so :


  environment.systemPackages = with pkgs; [ slock ];
  security.wrappers = {
security.setuidPrograms = [ "slock" ];
  slock.source = "${pkgs.slock}/bin/slock";
};

Revision as of 12:07, 1 July 2017

Setup

cannot disable the out-of-memory killer for this process

slock requires root for accessing passwords and protecting itself from OOM killing. To fix this error, add slock to your system packages and setuidPrograms security.wrappers by modifying your global configuration.nix like so :

security.wrappers = {
  slock.source = "${pkgs.slock}/bin/slock";
};