From 7f8cf75e1cf598938575d9098e2a19b91f6d51aa Mon Sep 17 00:00:00 2001 From: ediblerope Date: Fri, 19 Dec 2025 09:33:30 +0000 Subject: [PATCH] Update flatpaks.nix --- apps/flatpaks.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/flatpaks.nix b/apps/flatpaks.nix index 826dd2c..71bcf36 100644 --- a/apps/flatpaks.nix +++ b/apps/flatpaks.nix @@ -1,19 +1,19 @@ { config, pkgs, ... }: let - # This fetches the code directly from GitHub without needing a 'channel' nix-flatpak = builtins.fetchTarball { url = "https://github.com/gmodena/nix-flatpak/archive/main.tar.gz"; - # You can add a sha256 here for security later }; in { imports = [ - "${nix-flatpak}/nixos.nix" + # Pointing to the specific sub-folder path + "${nix-flatpak}/modules/nixos.nix" ]; services.flatpak = { enable = true; + # This matches the options provided by the nix-flatpak module packages = [ "io.github.zen_browser.zen" ];