blob: 21b9edcfcb7909f85dda3120890eb26d07663fbb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{ config, lib, ... }: let
cfg = config.features.gui.desktops.niri.parts.wluma;
in {
options.features.gui.desktops.niri.parts.wluma.enable = lib.mkEnableOption "wluma";
config = lib.mkIf cfg.enable {
services.wluma = {
enable = true;
systemd.enable = true;
};
};
}
|