debug
Some checks failed
Build / nix-build (ubuntu-aarch64, varda) (push) Failing after 2m47s
Build / nix-build (ubuntu-x86_64, durincore) (push) Failing after 4m18s
Build / Nix Build Successful (push) Successful in 4s

This commit is contained in:
Joseph Hanson 2024-05-21 10:50:34 -05:00
parent d2ce99cf52
commit 00d0e21bc8

View file

@ -77,6 +77,11 @@
rec {
# Use nixpkgs-fmt for 'nix fmt'
formatter = forAllSystems (system: nixpkgs.legacyPackages."${system}".nixpkgs-fmt);
buildPhase = forAllSystems (system: nixpkgs.legacyPackages."${system}".stdenv.mkDerivation {
buildPhase = ''
export HOME=$(pwd)
'';
});
# setup devshells against shell.nix
# devShells = forAllSystems (pkgs: import ./shell.nix { inherit pkgs; });