From efdec08eaef6f60070d51aa22ff32980646486d2 Mon Sep 17 00:00:00 2001 From: naturallaw77 Date: Wed, 12 Nov 2025 15:26:39 -0600 Subject: [PATCH] added flapak repo --- configuration.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/configuration.nix b/configuration.nix index ed40a82..5edc8cc 100755 --- a/configuration.nix +++ b/configuration.nix @@ -92,6 +92,14 @@ in # Allow Flatpak services.flatpak.enable = true; + systemd.services.flatpak-repo = { + wantedBy = [ "multi-user.target" ]; + path = [ pkgs.flatpak ]; + script = '' + flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo + ''; + }; + # Allow unfree packages nixpkgs.config.allowUnfree = true;