dregil: Update config

This commit is contained in:
Alexander Kobjolke 2025-03-14 23:08:00 +01:00
parent dc3725a83d
commit a9da0426fb
9 changed files with 86 additions and 26 deletions

18
modules/flatpak.nix Normal file
View file

@ -0,0 +1,18 @@
{
config,
lib,
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
'';
};
}