From d1833db57c92ecf615ea2783e4723fd5f4b778ba Mon Sep 17 00:00:00 2001 From: Laurent Gueret Date: Sun, 5 Apr 2026 15:38:33 +0200 Subject: [PATCH] Create flatpak.nix --- hosts/nixos/system/partials/flatpak.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 hosts/nixos/system/partials/flatpak.nix diff --git a/hosts/nixos/system/partials/flatpak.nix b/hosts/nixos/system/partials/flatpak.nix new file mode 100644 index 0000000..f2a8849 --- /dev/null +++ b/hosts/nixos/system/partials/flatpak.nix @@ -0,0 +1,12 @@ +{ ... }: +{ + services.flatpak.enable = true; + services.flatpak.update.auto = { + enable = true; + onCalendar = "weekly"; # Default value + }; + + services.flatpak.packages = [ + "com.usebottles.bottles" + ]; +}