From 9c573401a15d87719ea4876320edf1d61df0c4de Mon Sep 17 00:00:00 2001 From: Stefan Weigl-Bosker Date: Sat, 19 Jul 2025 20:26:22 -0400 Subject: modules/rmpc: init --- modules/default.nix | 1 + modules/rmpc.nix | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 modules/rmpc.nix (limited to 'modules') diff --git a/modules/default.nix b/modules/default.nix index df66ace..d429b21 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -27,5 +27,6 @@ ./zathura.nix ./zoxide.nix ./firefox.nix + ./rmpc.nix ]; } 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; + }; + }; +} -- cgit v1.2.3