summaryrefslogtreecommitdiff
path: root/home-manager/features/services/wluma.nix
blob: 7c9369e25cfd3341fb3fe8565e48bb383c26baea (plain)
1
2
3
4
5
6
7
8
9
10
11
{ config, pkgs, lib, ... }: let
  cfg = config.features.services.wluma;
in {
  options.features.services.wluma.enable = lib.mkEnableOption "wluma";
  config = lib.mkIf cfg.enable {
    services.wluma = {
      enable = true;
      systemd.enable = true;
    };
  };
}