diff options
Diffstat (limited to 'modules/rmpc.nix')
| -rw-r--r-- | modules/rmpc.nix | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/modules/rmpc.nix b/modules/rmpc.nix index f692c03..c3e9303 100644 --- a/modules/rmpc.nix +++ b/modules/rmpc.nix @@ -1,4 +1,9 @@ -{ config, lib, pkgs, ... }: +{ + config, + lib, + pkgs, + ... +}: let cfg = config.modules.rmpc; in @@ -6,7 +11,7 @@ in options.modules.rmpc.enable = lib.mkEnableOption "rmpc"; config = lib.mkIf cfg.enable { - programs.rmpc = { + programs.rmpc = { enable = true; }; }; |