nixpkgs/nixos/modules/hardware/sheep-net.nix
matthewcroughan c58a266a1e sheep_net: init
Co-authored-by: bloxx12 <charlie@charlieroot.dev>
Co-authored-by: Alyssa Ross <hi@alyssa.is>
2025-07-16 14:24:36 +01:00

35 lines
741 B
Nix

{
config,
lib,
...
}:
let
cfg = config.hardware.sheep_net;
in
{
options.hardware.sheep_net = {
enable = lib.mkOption {
type = lib.types.bool;
default = false;
description = ''
Enables sheep_net udev rules, ensures 'sheep_net' group exists, and adds
sheep-net to boot.kernelModules and boot.extraModulePackages
'';
};
};
config = lib.mkIf cfg.enable {
services.udev.extraRules = ''
KERNEL=="sheep_net", GROUP="sheep_net"
'';
boot.kernelModules = [
"sheep_net"
];
boot.extraModulePackages = [
config.boot.kernelPackages.sheep-net
];
users.groups.sheep_net = { };
};
meta.maintainers = with lib.maintainers; [ matthewcroughan ];
}