diff options
Diffstat (limited to 'modules/rmpc.nix')
| -rw-r--r-- | modules/rmpc.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/rmpc.nix b/modules/rmpc.nix new file mode 100644 index 0000000..f692c03 --- /dev/null +++ b/modules/rmpc.nix @@ -0,0 +1,13 @@ +{ config, lib, pkgs, ... }: +let + cfg = config.modules.rmpc; +in +{ + options.modules.rmpc.enable = lib.mkEnableOption "rmpc"; + + config = lib.mkIf cfg.enable { + programs.rmpc = { + enable = true; + }; + }; +} |