debug
This commit is contained in:
parent
b08b532b33
commit
cf3fcf7c7f
2 changed files with 1 additions and 9 deletions
1
.github/workflows/build.yml
vendored
1
.github/workflows/build.yml
vendored
|
@ -52,6 +52,7 @@ jobs:
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
|
export HOME=$(pwd)
|
||||||
nix build \
|
nix build \
|
||||||
".#top.${{ matrix.system }}" \
|
".#top.${{ matrix.system }}" \
|
||||||
--profile ./profile \
|
--profile ./profile \
|
||||||
|
|
|
@ -99,7 +99,6 @@
|
||||||
mkNixosConfig =
|
mkNixosConfig =
|
||||||
{ hostname
|
{ hostname
|
||||||
, system ? "x86_64-linux"
|
, system ? "x86_64-linux"
|
||||||
, buildPhase ? ""
|
|
||||||
, nixpkgs ? inputs.nixpkgs
|
, nixpkgs ? inputs.nixpkgs
|
||||||
, hardwareModules ? [ ]
|
, hardwareModules ? [ ]
|
||||||
# basemodules is the base of the entire machine building
|
# basemodules is the base of the entire machine building
|
||||||
|
@ -144,10 +143,6 @@
|
||||||
# Nix dev laptop
|
# Nix dev laptop
|
||||||
hostname = "durincore";
|
hostname = "durincore";
|
||||||
system = "x86_64-linux";
|
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 = [
|
hardwareModules = [
|
||||||
./nixos/profiles/hw-thinkpad-t470.nix
|
./nixos/profiles/hw-thinkpad-t470.nix
|
||||||
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-t470s
|
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-t470s
|
||||||
|
@ -163,10 +158,6 @@
|
||||||
# forgejo server
|
# forgejo server
|
||||||
hostname = "varda";
|
hostname = "varda";
|
||||||
system = "aarch64-linux";
|
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 = [
|
hardwareModules = [
|
||||||
./nixos/profiles/hw-hetzner-cax.nix
|
./nixos/profiles/hw-hetzner-cax.nix
|
||||||
];
|
];
|
||||||
|
|
Reference in a new issue