mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 04:45:39 +00:00
20 lines
398 B
Nix
20 lines
398 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.programs.udevil;
|
|
|
|
in {
|
|
options.programs.udevil.enable = mkEnableOption (lib.mdDoc "udevil, to mount filesystems without password");
|
|
|
|
config = mkIf cfg.enable {
|
|
security.wrappers.udevil =
|
|
{ setuid = true;
|
|
owner = "root";
|
|
group = "root";
|
|
source = "${lib.getBin pkgs.udevil}/bin/udevil";
|
|
};
|
|
};
|
|
}
|