nixos-configs/nixosModules/desktop/environment/modules/ratbag-mice.nix
matt1432 24aa4b9842
All checks were successful
Discord / discord commits (push) Has been skipped
refactor: make modules independant and exposed in the flake for outside use
2024-08-02 22:32:29 -04:00

18 lines
301 B
Nix

self: {pkgs, ...}: let
inherit (self.packages.${pkgs.system}) libratbag piper;
in {
config = {
services.ratbagd = {
enable = true;
package = libratbag;
};
environment.systemPackages = [
piper
];
};
# For accurate stack trace
_file = ./ratbag-mice.nix;
}