blob: 6cab0b178e59a862a98c4b18442f5cfed15d25f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{
config,
lib,
pkgs,
...
}:
{
options.nx.services.wooting.enable = lib.mkEnableOption "Wootility service";
config = lib.mkIf config.nx.services.wooting.enable {
services.udev.packages = [ pkgs.wooting-udev-rules ];
environment.systemPackages = with pkgs; [
wootility
];
};
}
|