nix-config/home/features/desktop/common/flatpak.nix

24 lines
556 B
Nix
Raw Normal View History

{ inputs, ... }: {
imports = [ inputs.nix-flatpak.homeManagerModules.nix-flatpak ];
2024-01-26 18:04:50 +01:00
services.flatpak = {
uninstallUnmanaged = true;
2024-01-26 18:04:50 +01:00
packages = [
"md.obsidian.Obsidian"
"com.github.iwalton3.jellyfin-media-player"
"com.github.tchx84.Flatseal"
2024-01-26 18:04:50 +01:00
];
overrides = {
global = {
Context = {
sockets = [ "wayland" "!x11" "!fallback-x11" ];
filesystems = [
"~/.local/share/fonts:ro"
"~/.icons:ro"
"/nix/store:ro"
];
};
2024-11-02 11:30:15 +01:00
};
};
2024-01-26 18:04:50 +01:00
};
}