From c7da2b8df1e64f593232359d8969ce8e7e649d14 Mon Sep 17 00:00:00 2001 From: Ahurac Date: Tue, 1 Oct 2024 11:34:48 +0200 Subject: [PATCH] feat(flatpak): other settings --- common/home.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/common/home.nix b/common/home.nix index 9ecc824..2f7cfbe 100644 --- a/common/home.nix +++ b/common/home.nix @@ -49,6 +49,16 @@ services.ssh-agent.enable = true; services.flatpak.packages = [ "im.riot.Riot" ]; + services.flatpak.update.onActivation = true; + services.flatpak.overrides = { + global = { + Context.sockets = [ "wayland" "!x11" "!fallback-x11" ]; + Environment = { + XCURSOR_PATH = "/run/host/user-share/icons:/run/host/share/icons"; + GTK_THEME = "Adwaita:dark"; + }; + }; + }; programs.home-manager.enable = true; programs.firefox.enable = true;