diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-07-19 20:26:22 -0400 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-07-19 20:26:22 -0400 |
| commit | 9c573401a15d87719ea4876320edf1d61df0c4de (patch) | |
| tree | 913f3ec2249c808750a6d5262cdb6b1206b2b6d2 /modules/rmpc.nix | |
| parent | 526c91895f32c806b0de4abfea5291799704a498 (diff) | |
| download | home-9c573401a15d87719ea4876320edf1d61df0c4de.tar.gz | |
modules/rmpc: init
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; + }; + }; +} |