aboutsummaryrefslogtreecommitdiff
path: root/modules/rmpc.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/rmpc.nix')
-rw-r--r--modules/rmpc.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/modules/rmpc.nix b/modules/rmpc.nix
deleted file mode 100644
index c3e9303..0000000
--- a/modules/rmpc.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- 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;
- };
- };
-}