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

This commit is contained in:
Joseph Hanson 2024-05-21 11:47:50 -05:00
parent 00d0e21bc8
commit bade33e81d
2 changed files with 3 additions and 8 deletions

View file

@ -50,10 +50,10 @@ jobs:
- name: Build new ${{ matrix.system }} system
shell: bash
env:
HOME: /tmp
run: |
set -o pipefail
rm -rf /homeless-shelter
export HOME=$(pwd)
nix build \
".#top.${{ matrix.system }}" \
--profile ./profile \

View file

@ -77,14 +77,9 @@
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; });
devShells = forAllSystems (pkgs: import ./shell.nix { inherit pkgs; });
# extend lib with my custom functions
lib = nixpkgs.lib.extend (