From cdae93868cd3aa36b777c59c106954e39076f6c4 Mon Sep 17 00:00:00 2001 From: Joscha Feth Date: Wed, 16 Jul 2025 16:08:40 +0100 Subject: [PATCH 1/3] chore: remove default greeting from devenv configuration --- devenv.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/devenv.nix b/devenv.nix index 15a69a7..2e180df 100644 --- a/devenv.nix +++ b/devenv.nix @@ -7,8 +7,6 @@ }: { - # https://devenv.sh/basics/ - env.GREET = "devenv"; # https://devenv.sh/packages/ packages = [ From 884574a4a5f80251c65e998fa3bd10e7175674dd Mon Sep 17 00:00:00 2001 From: Joscha Feth Date: Wed, 16 Jul 2025 16:09:00 +0100 Subject: [PATCH 2/3] ci: add extra Nix configuration for Cachix in GitHub Actions workflow --- .github/workflows/test.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6c7f23d..d862171 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,6 +13,10 @@ jobs: steps: - uses: actions/checkout@v4 - uses: cachix/install-nix-action@v31 + with: + extra_nix_config: | + substituters = https://cache.nixos.org https://devenv.cachix.org https://nixpkgs-python.cachix.org + trusted-public-keys = devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw= nixpkgs-python.cachix.org-1:hxjI7pFxTyuTHn2NkvWCrAUcNZLNS3ZAvfYNuYifcEU= - uses: cachix/cachix-action@v16 with: name: planet-a-ventures @@ -39,6 +43,10 @@ jobs: with: fetch-depth: 0 - uses: cachix/install-nix-action@v31 + with: + extra_nix_config: | + substituters = https://cache.nixos.org https://devenv.cachix.org https://nixpkgs-python.cachix.org + trusted-public-keys = devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw= nixpkgs-python.cachix.org-1:hxjI7pFxTyuTHn2NkvWCrAUcNZLNS3ZAvfYNuYifcEU= - uses: cachix/cachix-action@v16 with: name: planet-a-ventures From b2d405409761864c9e8f956d66168d6945318858 Mon Sep 17 00:00:00 2001 From: Joscha Feth Date: Wed, 16 Jul 2025 16:11:25 +0100 Subject: [PATCH 3/3] ci: update Nix configuration keys in GitHub Actions workflow --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d862171..8028ed1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,8 +15,8 @@ jobs: - uses: cachix/install-nix-action@v31 with: extra_nix_config: | - substituters = https://cache.nixos.org https://devenv.cachix.org https://nixpkgs-python.cachix.org - trusted-public-keys = devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw= nixpkgs-python.cachix.org-1:hxjI7pFxTyuTHn2NkvWCrAUcNZLNS3ZAvfYNuYifcEU= + extra-substituters = https://cache.nixos.org https://devenv.cachix.org https://nixpkgs-python.cachix.org + extra-trusted-public-keys = devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw= nixpkgs-python.cachix.org-1:hxjI7pFxTyuTHn2NkvWCrAUcNZLNS3ZAvfYNuYifcEU= - uses: cachix/cachix-action@v16 with: name: planet-a-ventures @@ -45,8 +45,8 @@ jobs: - uses: cachix/install-nix-action@v31 with: extra_nix_config: | - substituters = https://cache.nixos.org https://devenv.cachix.org https://nixpkgs-python.cachix.org - trusted-public-keys = devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw= nixpkgs-python.cachix.org-1:hxjI7pFxTyuTHn2NkvWCrAUcNZLNS3ZAvfYNuYifcEU= + extra-substituters = https://cache.nixos.org https://devenv.cachix.org https://nixpkgs-python.cachix.org + extra-trusted-public-keys = devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw= nixpkgs-python.cachix.org-1:hxjI7pFxTyuTHn2NkvWCrAUcNZLNS3ZAvfYNuYifcEU= - uses: cachix/cachix-action@v16 with: name: planet-a-ventures