flatpak: wait for network-online before managed install

This commit is contained in:
randogoth 2026-02-14 17:45:42 +02:00
parent 72e00c28e1
commit cd9198ee46

View file

@ -21,4 +21,9 @@
"com.github.tchx84.Flatseal" "com.github.tchx84.Flatseal"
]; ];
}; };
systemd.services.flatpak-managed-install = {
wants = [ "network-online.target" ];
after = [ "network-online.target" ];
};
} }