debug
Some checks failed
Build / Nix Build Successful (push) Blocked by required conditions
Build / nix-build (ubuntu-aarch64, varda) (push) Failing after 2m52s
Build / nix-build (ubuntu-x86_64, durincore) (push) Has been cancelled

This commit is contained in:
Joseph Hanson 2024-05-21 10:20:17 -05:00
parent b08b532b33
commit cf3fcf7c7f
2 changed files with 1 additions and 9 deletions

View file

@ -52,6 +52,7 @@ jobs:
shell: bash
run: |
set -o pipefail
export HOME=$(pwd)
nix build \
".#top.${{ matrix.system }}" \
--profile ./profile \

View file

@ -99,7 +99,6 @@
mkNixosConfig =
{ hostname
, system ? "x86_64-linux"
, buildPhase ? ""
, nixpkgs ? inputs.nixpkgs
, hardwareModules ? [ ]
# basemodules is the base of the entire machine building
@ -144,10 +143,6 @@
# Nix dev laptop
hostname = "durincore";
system = "x86_64-linux";
buildPhase = ''
# this line removes a bug where value of $HOME is set to a non-writable /homeless-shelter dir
export HOME=$(pwd)
'';
hardwareModules = [
./nixos/profiles/hw-thinkpad-t470.nix
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-t470s
@ -163,10 +158,6 @@
# forgejo server
hostname = "varda";
system = "aarch64-linux";
buildPhase = ''
# this line removes a bug where value of $HOME is set to a non-writable /homeless-shelter dir
export HOME=$(pwd)
'';
hardwareModules = [
./nixos/profiles/hw-hetzner-cax.nix
];