mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
31 lines
707 B
Nix
31 lines
707 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.programs.dmrconfig;
|
|
|
|
in {
|
|
meta.maintainers = [ ];
|
|
|
|
###### interface
|
|
options = {
|
|
programs.dmrconfig = {
|
|
enable = lib.mkOption {
|
|
default = false;
|
|
type = lib.types.bool;
|
|
description = ''
|
|
Whether to configure system to enable use of dmrconfig. This
|
|
enables the required udev rules and installs the program.
|
|
'';
|
|
relatedPackages = [ "dmrconfig" ];
|
|
};
|
|
|
|
package = lib.mkPackageOption pkgs "dmrconfig" { };
|
|
};
|
|
};
|
|
|
|
###### implementation
|
|
config = lib.mkIf cfg.enable {
|
|
environment.systemPackages = [ cfg.package ];
|
|
services.udev.packages = [ cfg.package ];
|
|
};
|
|
}
|