From c436163d309257aabcfe637e1211d7203710f99d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Sun, 31 May 2020 12:40:39 +0100 Subject: [PATCH] enable dconf --- nixos/i3/system.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nixos/i3/system.nix b/nixos/i3/system.nix index 99c9374c..2c3e70ef 100644 --- a/nixos/i3/system.nix +++ b/nixos/i3/system.nix @@ -1,6 +1,10 @@ { config, pkgs, ... }: { + environment.systemPackages = with pkgs; [ + gnome3.dconf + ]; programs.dconf.enable = true; + xdg.portal.enable = true; xdg.portal.gtkUsePortal = true; xdg.portal.extraPortals = with pkgs; [ xdg-desktop-portal-gtk xdg-desktop-portal-kde ]; @@ -11,7 +15,7 @@ allowAnyUser = true; }; - dbus.packages = with pkgs; [ gnome2.GConf ]; + dbus.packages = with pkgs; [ gnome2.GConf gnome3.dconf ]; fractalart.enable = true; colord.enable = true; xserver.windowManager.i3.enable = true;