From 5f0edd57f480be8e81bd49ad7864d309f4712de5 Mon Sep 17 00:00:00 2001 From: Xaiya Schumin Date: Fri, 30 May 2025 19:56:26 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20-=20fixes=20install=20error=20'p?= =?UTF-8?q?ackage=20is=20unfree'=20-=20fixes=20workflow=20error=20that=20w?= =?UTF-8?q?ould=20have=20accoured=20+=20commits=20the=20changes=20now?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Xaiya Schumin --- .github/workflows/releaseDev.yml | 3 ++- .github/workflows/releaseMaster.yml | 3 ++- flake.nix | 1 + 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/releaseDev.yml b/.github/workflows/releaseDev.yml index 72a2a1a..476a425 100644 --- a/.github/workflows/releaseDev.yml +++ b/.github/workflows/releaseDev.yml @@ -44,4 +44,5 @@ jobs: with: packages: nix-update script: | - nix-update --flake --version=unstable --subpackage pnpmDeps injection + nix-update --flake injection --version=unstable + - uses: stefanzweifel/git-auto-commit-action@v5 diff --git a/.github/workflows/releaseMaster.yml b/.github/workflows/releaseMaster.yml index 39a43ee..62da90d 100644 --- a/.github/workflows/releaseMaster.yml +++ b/.github/workflows/releaseMaster.yml @@ -45,4 +45,5 @@ jobs: with: packages: nix-update script: | - nix-update --flake --version=unstable --subpackage pnpmDeps injection + nix-update --flake injection --version=unstable + - uses: stefanzweifel/git-auto-commit-action@v5 \ No newline at end of file diff --git a/flake.nix b/flake.nix index 66805f5..8a8dbc8 100644 --- a/flake.nix +++ b/flake.nix @@ -16,6 +16,7 @@ perSystem = { config, pkgs, system, ... }: { _module.args.pkgs = import inputs.nixpkgs { inherit system; + config.allowUnfree = true; overlays = [ self.overlays.default ]; };