Menno van Leeuwen 498b28fac0
Some checks failed
Nix Format Check / check-format (push) Failing after 39s
refactor: add NixOS configuration files for server and workstation setups
2025-03-04 11:22:51 +01:00

12 lines
281 B
Nix

{ 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
'';
};
}