mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2025-03-10 11:08:34 +01:00
13 lines
305 B
Nix
13 lines
305 B
Nix
|
{pkgs, ...}: {
|
||
|
services = {
|
||
|
flatpak.enable = true; # Enable Flatpak
|
||
|
};
|
||
|
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
|
||
|
'';
|
||
|
};
|
||
|
}
|