From 8868f0b82505443929bac675171b1a199c340cde Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Sun, 8 Sep 2024 17:10:56 -0400 Subject: [PATCH] fixed flathub remote url, added automatic flatpak update schedule --- home/flatpak.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/home/flatpak.nix b/home/flatpak.nix index f050a7e..933e61a 100644 --- a/home/flatpak.nix +++ b/home/flatpak.nix @@ -3,7 +3,7 @@ remotes = [ { name = "flathub"; - location = "https://dl.flathub.org/repo/flathub..flatpakrepo"; + location = "https://dl.flathub.org/repo/flathub.flatpakrepo"; } ]; @@ -18,5 +18,12 @@ "org.prismlauncher.PrismLauncher" "sh.cider.Cider" ]; + + update = { + auto = { + enable = true; + onCalendar = "weekly"; + }; + }; }; }