1
0
Fork 0
nix-configuration/modules/ui/flatpak.nix

74 lines
2 KiB
Nix
Raw Normal View History

2024-02-29 09:53:34 -05:00
{ nix-flatpak, pkgs, config, lib, ... }:
# Flatpak support and options
let
cfg = config.host.ui.flatpak;
in
with lib;
{
options = {
host.ui.flatpak.enable = mkEnableOption (mdDoc "Enables Flatpak");
};
config = mkIf cfg.enable {
# Enable Flatpak
services.flatpak = {
enable = true;
2024-04-15 12:00:08 -04:00
# Manage all Flatpak packages and remotes
uninstallUnmanaged = true;
2024-02-29 15:07:39 -05:00
2024-02-29 09:53:34 -05:00
# Enable daily automatic updates
update.auto = {
enable = true;
onCalendar = "daily";
};
# Add remote(s)
remotes = [
{ name = "flathub"; location = "https://dl.flathub.org/repo/flathub.flatpakrepo"; }
];
# Install Flatpaks. For details, see https://github.com/gmodena/nix-flatpak
packages = [
"com.github.tchx84.Flatseal"
2024-03-04 10:57:41 -05:00
"md.obsidian.Obsidian"
2024-04-13 13:16:29 -04:00
"net.waterfox.waterfox"
2024-03-04 10:57:41 -05:00
"org.keepassxc.KeePassXC"
"org.mozilla.firefox"
2024-02-29 09:53:34 -05:00
];
};
# Workaround for getting Flatpak apps to use system fonts, icons, and cursors
# For details (and source), see https://github.com/NixOS/nixpkgs/issues/119433#issuecomment-1767513263
2024-04-27 20:19:59 -04:00
# NOTE: If fonts in Flatpaks appear incorrect (like squares), run this command to regenerate the font cache:
# flatpak list --columns=application | xargs -I %s -- flatpak run --command=fc-cache %s -f -v
2024-02-29 09:53:34 -05:00
system.fsPackages = [ pkgs.bindfs ];
fileSystems = let
mkRoSymBind = path: {
device = path;
fsType = "fuse.bindfs";
options = [ "ro" "resolve-symlinks" "x-gvfs-hide" ];
};
aggregatedIcons = pkgs.buildEnv {
name = "system-icons";
paths = with pkgs; [
2024-03-04 10:57:41 -05:00
#libsForQt5.breeze-qt5 # for plasma
2024-02-29 09:53:34 -05:00
gnome.gnome-themes-extra
2024-03-21 10:59:16 -04:00
papirus-icon-theme
qogir-icon-theme
2024-02-29 09:53:34 -05:00
];
pathsToLink = [ "/share/icons" ];
};
aggregatedFonts = pkgs.buildEnv {
name = "system-fonts";
paths = config.fonts.packages;
pathsToLink = [ "/share/fonts" ];
};
in {
"/usr/share/icons" = mkRoSymBind "${aggregatedIcons}/share/icons";
"/usr/local/share/fonts" = mkRoSymBind "${aggregatedFonts}/share/fonts";
};
};
}