mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
17 lines
383 B
Nix
17 lines
383 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.programs.udevil;
|
|
|
|
in {
|
|
options.programs.udevil.enable = lib.mkEnableOption "udevil, to mount filesystems without password";
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
security.wrappers.udevil =
|
|
{ setuid = true;
|
|
owner = "root";
|
|
group = "root";
|
|
source = "${lib.getBin pkgs.udevil}/bin/udevil";
|
|
};
|
|
};
|
|
}
|