mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
16 lines
294 B
Nix
16 lines
294 B
Nix
{ config, lib, pkgs, ... }:
|
|
let
|
|
cfg = config.hardware.gkraken;
|
|
in
|
|
{
|
|
options.hardware.gkraken = {
|
|
enable = lib.mkEnableOption "gkraken's udev rules for NZXT AIO liquid coolers";
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
services.udev.packages = with pkgs; [
|
|
gkraken
|
|
];
|
|
};
|
|
}
|