nix-config/home/features/desktop/common/flatpak.nix
GHOSCHT 9c5c1adaac
Add theming support
gtk, qt, cursor theme
2024-02-04 20:47:59 +01:00

29 lines
578 B
Nix

{
inputs,
pkgs,
vars,
...
}: {
imports = [inputs.flatpaks.homeManagerModules.default];
services.flatpak = {
remotes.flathub = "https://flathub.org/repo/flathub.flatpakrepo";
packages = [
"flathub:app/us.zoom.Zoom//stable"
"flathub:app/com.discordapp.Discord//stable"
];
overrides = {
"global" = {
filesystems = [
"~/.local/share/icons"
];
environment = {
"MOZ_ENABLE_WAYLAND" = 1;
};
sockets = [
"!x11"
"fallback-x11"
];
};
};
};
}