summaryrefslogtreecommitdiff
path: root/modules/services/dbus.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-09-03 16:11:43 -0700
committerFuwn <[email protected]>2024-09-03 16:11:43 -0700
commita93e1fa90e9951d728e968003ea810abeba64e4c (patch)
treee2b2952fcc2d1f08b327a1a6fe0c58d70dc0e54f /modules/services/dbus.nix
parenttor mostly (diff)
downloadnixos-config-a93e1fa90e9951d728e968003ea810abeba64e4c.tar.xz
nixos-config-a93e1fa90e9951d728e968003ea810abeba64e4c.zip
tings
Diffstat (limited to 'modules/services/dbus.nix')
-rw-r--r--modules/services/dbus.nix13
1 files changed, 8 insertions, 5 deletions
diff --git a/modules/services/dbus.nix b/modules/services/dbus.nix
index f3c158a..d67ed2b 100644
--- a/modules/services/dbus.nix
+++ b/modules/services/dbus.nix
@@ -1,8 +1,11 @@
{
- services.dbus.enable = true;
+ services.dbus = {
+ enable = true;
+ implementation = "broker";
- # services.dbus.packages = [
- # # pkgs.flatpak
- # pkgs.xdg-desktop-portal
- # ];
+ # packages = [
+ # # pkgs.flatpak
+ # pkgs.xdg-desktop-portal
+ # ];
+ };
}