Files
cnix/modules/nixos/services/flatpak/default.nix
2025-07-10 13:30:55 +02:00

34 lines
899 B
Nix

{
config,
lib,
pkgs,
...
}: let
inherit (lib) mkIf mkEnableOption;
cfg = config.nixos.services.flatpak;
in {
options = {
nixos.services.flatpak.enable = mkEnableOption "Enables flatpaks and gnome software";
};
config = mkIf cfg.enable {
services.flatpak.enable = true;
environment.systemPackages = with pkgs; [
gnome-software
];
systemd.services.flatpak-repo = {
description = "Add flathub repository";
after = ["network-online.target"];
wants = ["network-online.target"];
path = [pkgs.flatpak];
serviceConfig = {
Type = "oneshot";
RemainAfterExit = true;
ExecStart = "${pkgs.flatpak}/bin/flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo";
Restart = "on-failure";
RestartSec = "5s";
};
wantedBy = ["multi-user.target"];
};
};
}