summaryrefslogtreecommitdiff
path: root/modules/system/services/dbus.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-09-05 11:24:33 -0700
committerFuwn <[email protected]>2024-09-05 11:24:33 -0700
commit346fc86eeb7f9e7f7028fd2ff4c201af9a3053ec (patch)
tree9af288a724b9a834d3a361e65f035bc75279553f /modules/system/services/dbus.nix
parentBump (diff)
downloadnixos-config-346fc86eeb7f9e7f7028fd2ff4c201af9a3053ec.tar.xz
nixos-config-346fc86eeb7f9e7f7028fd2ff4c201af9a3053ec.zip
Bump
Diffstat (limited to 'modules/system/services/dbus.nix')
-rw-r--r--modules/system/services/dbus.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/modules/system/services/dbus.nix b/modules/system/services/dbus.nix
index d67ed2b..8b25bf9 100644
--- a/modules/system/services/dbus.nix
+++ b/modules/system/services/dbus.nix
@@ -1,11 +1,15 @@
+{ pkgs, ... }:
{
services.dbus = {
enable = true;
implementation = "broker";
- # packages = [
- # # pkgs.flatpak
- # pkgs.xdg-desktop-portal
- # ];
+ packages = with pkgs; [
+ dconf
+ gcr
+ udisks2
+ # flatpak
+ # xdg-desktop-portal
+ ];
};
}