slock: needs the ability to be install with suid privileges

This commit is contained in:
Scott R. Parish 2017-03-30 14:22:31 -07:00
parent 163668f6c4
commit 7138b55918
No known key found for this signature in database
GPG key ID: F62ACD2382D23E60
2 changed files with 27 additions and 0 deletions

View file

@ -89,6 +89,7 @@
./programs/nano.nix
./programs/oblogout.nix
./programs/screen.nix
./programs/slock.nix
./programs/shadow.nix
./programs/shell.nix
./programs/spacefm.nix

View file

@ -0,0 +1,26 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.slock;
in
{
options = {
programs.slock = {
enable = mkOption {
default = false;
type = types.bool;
description = ''
Whether to install slock screen locker with setuid wrapper.
'';
};
};
};
config = mkIf cfg.enable {
environment.systemPackages = [ pkgs.slock ];
security.wrappers.slock.source = "${pkgs.slock.out}/bin/slock";
};
}