mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
15 lines
257 B
Nix
15 lines
257 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.source = "${lib.getBin pkgs.udevil}/bin/udevil";
|
||
|
};
|
||
|
}
|