mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-04 10:43:53 +00:00
12 lines
228 B
Nix
12 lines
228 B
Nix
|
{ lib, config, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let cfg = config.module.services.dbus;
|
||
|
in {
|
||
|
options = { module.services.dbus = { enable = mkEnableOption ""; }; };
|
||
|
|
||
|
config = mkIf cfg.enable { services.dbus.implementation = "broker"; };
|
||
|
}
|
||
|
|