aboutsummaryrefslogtreecommitdiff
path: root/modules/rmpc.nix
diff options
context:
space:
mode:
authorStefan Weigl-Bosker <stefan@s00.xyz>2025-07-27 15:10:18 -0400
committerStefan Weigl-Bosker <stefan@s00.xyz>2025-07-27 15:10:18 -0400
commitb40d9c7ca52eed3e2eed31ef73567db86d562935 (patch)
tree617630846d02b2fbf88b07dd62db64bd689fcc9d /modules/rmpc.nix
parent1e219bd15e9a659e87f0ebc07bb0ab953d4cf197 (diff)
downloadhome-b40d9c7ca52eed3e2eed31ef73567db86d562935.tar.gz
sync
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;
- };
- };
-}