Fix cachix push

This commit is contained in:
larstvei 2024-07-20 18:02:06 +02:00
parent f5b789277d
commit d7d582fe08
2 changed files with 4 additions and 1 deletions

View File

@ -26,5 +26,6 @@ jobs:
- name: Build and Push with Cachix
run: |
nix develop
set -e
nix build | cachix push larstvei
nix build --json | jq -r '.[].outputs | to_entries[].value' | cachix push larstvei

View File

@ -43,5 +43,7 @@
extraEmacsPackages = epkgs:
[ epkgs.treesit-grammars.with-all-grammars ];
};
devShell = pkgs.mkShell { buildInputs = [ pkgs.jq ]; };
});
}