diff options
| author | Fuwn <[email protected]> | 2024-08-30 17:18:42 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-08-30 17:18:42 -0700 |
| commit | f011065b76e37a76222919c333005559eda8dbde (patch) | |
| tree | d56b550369591048c9062344e49ca3e79a291b14 /modules/services | |
| parent | update (diff) | |
| download | nixos-config-f011065b76e37a76222919c333005559eda8dbde.tar.xz nixos-config-f011065b76e37a76222919c333005559eda8dbde.zip | |
swag
Diffstat (limited to 'modules/services')
| -rw-r--r-- | modules/services/ananicy.nix | 7 | ||||
| -rw-r--r-- | modules/services/default.nix | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/modules/services/ananicy.nix b/modules/services/ananicy.nix new file mode 100644 index 0000000..7e86026 --- /dev/null +++ b/modules/services/ananicy.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: { + services.ananicy = { + enable = true; + package = pkgs.ananicy-cpp; + rulesProvider = pkgs.ananicy-rules-cachyos; + }; +} diff --git a/modules/services/default.nix b/modules/services/default.nix index 4b630d6..d629f38 100644 --- a/modules/services/default.nix +++ b/modules/services/default.nix @@ -1,5 +1,6 @@ { imports = [ + ./ananicy.nix ./dbus.nix ./libinput.nix ./openssh.nix |