587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
19 lines
386 B
Nix
19 lines
386 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.programs.udevil;
|
|
|
|
in {
|
|
options.programs.udevil.enable = mkEnableOption "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";
|
|
};
|
|
};
|
|
}
|