aboutsummaryrefslogtreecommitdiff
path: root/modules/rmpc.nix
blob: c3e93030bbb455b6c52880386d07e73e0f9eb3b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  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;
    };
  };
}