mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
fedd7cd690
This is slightly more verbose and inconvenient, but it forces you to think about what the wrapper ownership and permissions will be.
20 lines
347 B
Nix
20 lines
347 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.programs.udevil;
|
|
|
|
in {
|
|
options.programs.udevil.enable = mkEnableOption "udevil";
|
|
|
|
config = mkIf cfg.enable {
|
|
security.wrappers.udevil =
|
|
{ setuid = true;
|
|
owner = "root";
|
|
group = "root";
|
|
source = "${lib.getBin pkgs.udevil}/bin/udevil";
|
|
};
|
|
};
|
|
}
|