aboutsummaryrefslogtreecommitdiff
path: root/modules/rmpc.nix
diff options
context:
space:
mode:
authorStefan Weigl-Bosker <stefan@s00.xyz>2025-07-19 20:26:22 -0400
committerStefan Weigl-Bosker <stefan@s00.xyz>2025-07-19 20:26:22 -0400
commit9c573401a15d87719ea4876320edf1d61df0c4de (patch)
tree913f3ec2249c808750a6d5262cdb6b1206b2b6d2 /modules/rmpc.nix
parent526c91895f32c806b0de4abfea5291799704a498 (diff)
downloadhome-9c573401a15d87719ea4876320edf1d61df0c4de.tar.gz
modules/rmpc: init
Diffstat (limited to 'modules/rmpc.nix')
-rw-r--r--modules/rmpc.nix13
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;
+ };
+ };
+}