aboutsummaryrefslogtreecommitdiff
path: root/modules/rmpc.nix
diff options
context:
space:
mode:
authorStefan Weigl-Bosker <stefan@s00.xyz>2025-07-25 13:40:27 -0400
committerStefan Weigl-Bosker <stefan@s00.xyz>2025-07-25 13:40:27 -0400
commitf2fb01a55b54dae9a5c26c7e1bae3d17c18de73e (patch)
treec861617d8ff6f5fdf188b1f7dd5774c1d17a3cd5 /modules/rmpc.nix
parent8a0457f14d000b4aae8bbd4e950654802f01c584 (diff)
downloadhome-f2fb01a55b54dae9a5c26c7e1bae3d17c18de73e.tar.gz
repo: format tree
Diffstat (limited to 'modules/rmpc.nix')
-rw-r--r--modules/rmpc.nix9
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;
};
};