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;