Files
NixOS/nixos_24.11_wlin001/packages/flatpak.nix
2025-04-30 20:47:57 +02:00

15 lines
292 B
Nix

{ config, pkgs, ... }:
{
services.flatpak.enable = true;
systemd.services.flatpak-repo = {
wantedBy = [ "multi-user.target" ];
path = [ pkgs.flatpak ];
script = ''
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
'';
};
}