2024-04-07 22:16:33 -04:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}: {
|
2024-06-26 22:13:02 -04:00
|
|
|
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
|
|
|
|
2024-03-28 16:13:46 -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"];
|
2024-03-28 16:13:46 -04:00
|
|
|
};
|
|
|
|
aggregatedFonts = pkgs.buildEnv {
|
|
|
|
name = "system-fonts";
|
|
|
|
paths = config.fonts.packages;
|
2024-04-07 22:16:33 -04:00
|
|
|
pathsToLink = ["/share/fonts"];
|
2024-03-28 16:13:46 -04:00
|
|
|
};
|
|
|
|
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;
|
2024-03-28 16:13:46 -04:00
|
|
|
};
|
|
|
|
}
|