nixcfg/nixosModules/services/flatpak/default.nix

33 lines
874 B
Nix
Raw Normal View History

2024-04-07 22:16:33 -04:00
{
pkgs,
lib,
config,
...
}: {
config = lib.mkIf config.ar.services.flatpak.enable {
2024-05-27 21:39:30 -04:00
environment.systemPackages = with pkgs; [gnome.gnome-software];
2024-05-29 21:02:20 -04:00
fileSystems = let
mkRoSymBind = path: {
device = path;
fsType = "fuse.bindfs";
2024-04-07 22:16:33 -04:00
options = ["ro" "resolve-symlinks" "x-gvfs-hide"];
};
aggregatedFonts = pkgs.buildEnv {
name = "system-fonts";
paths = config.fonts.packages;
2024-04-07 22:16:33 -04:00
pathsToLink = ["/share/fonts"];
};
in {
# Create an FHS mount to support flatpak host icons/fonts
"/usr/share/icons" = mkRoSymBind (config.system.path + "/share/icons");
"/usr/share/fonts" = mkRoSymBind (aggregatedFonts + "/share/fonts");
};
2024-05-27 21:39:30 -04:00
fonts.fontDir.enable = true;
services.flatpak.enable = true;
system.fsPackages = [pkgs.bindfs];
xdg.portal.enable = true;
};
}