Files
nixos/Droidnix/generated/modules/apps/flatpaks.nix
T
2026-03-19 13:36:48 +00:00

79 lines
2.2 KiB
Nix

{ lib, pkgs, config, ... }:
let
moduleName = "flatpaks";
# Toggle for this module
enableProgram = config.enableFlatpaks or false;
# Default username
username = config.defaultUser or "henrov";
# Path to the flatpaks.conf (no reading at eval time!)
flatpakConfPath = ../../../assets/system/apps/flatpaks.conf;
in {
# Top-level toggle option
options.enableFlatpaks = lib.mkEnableOption "Enable automatic Flatpak installation";
config = lib.mkIf enableProgram {
# Place Flatpaks under mySystem (do not declare nested options)
mySystem = {
flatpaks = {
enable = true;
user = username;
assetsDir = flatpakConfPath;
files = []; # handled at runtime
};
};
# Deploy the conf file to /etc
environment.etc."flatpak/flatpaks.conf".source = flatpakConfPath;
# Enable flatpak service
services.flatpak.enable = true;
xdg.portal.enable = true;
# Systemd service for installing listed Flatpaks
systemd.services.flatpak-sync = {
description = "Install Flatpak apps listed in flatpaks.conf";
wantedBy = [ "multi-user.target" ];
wants = [ "network-online.target" ];
after = [ "network-online.target" ];
serviceConfig = {
Type = "oneshot";
ExecStart = ''
set -euo pipefail
CONF="${flatpakConfPath}"
# Add flathub if missing
if ! flatpak remotes --system --columns=name | grep -qx flathub; then
flatpak remote-add --system --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
fi
# Read apps safely (ignore empty lines and comments)
while IFS= read -r app || [ -n "$app" ]; do
app=$(echo "$app" | sed 's/#.*//;s/^[[:space:]]*//;s/[[:space:]]*$//')
if [ -n "$app" ]; then
if ! flatpak info --system "$app" >/dev/null 2>&1; then
flatpak install --system -y --noninteractive flathub "$app"
fi
fi
done < "$CONF"
'';
};
restartTriggers = [ flatpakConfPath ];
path = [
pkgs.flatpak
pkgs.coreutils
pkgs.gnugrep
pkgs.gnused
];
};
};
}