summaryrefslogtreecommitdiff
path: root/modules/pc/software/services/dbus.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/pc/software/services/dbus.nix')
-rw-r--r--modules/pc/software/services/dbus.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/modules/pc/software/services/dbus.nix b/modules/pc/software/services/dbus.nix
new file mode 100644
index 0000000..8b25bf9
--- /dev/null
+++ b/modules/pc/software/services/dbus.nix
@@ -0,0 +1,15 @@
+{ pkgs, ... }:
+{
+ services.dbus = {
+ enable = true;
+ implementation = "broker";
+
+ packages = with pkgs; [
+ dconf
+ gcr
+ udisks2
+ # flatpak
+ # xdg-desktop-portal
+ ];
+ };
+}