Compare commits

...

2 commits

Author SHA1 Message Date
d12fc5d944 Add runner settings to get nix builds working
All checks were successful
Build NixOS Configurations / build (carbon) (push) Successful in 1m21s
Build NixOS Configurations / build (git) (push) Successful in 1m14s
Build NixOS Configurations / build (gospel) (push) Successful in 1m23s
Build NixOS Configurations / build (node) (push) Successful in 1m18s
Committing this late (was already in use by system)
2026-02-28 22:10:27 -08:00
a6fdf61cea Fix typo 2026-02-28 22:05:51 -08:00
2 changed files with 10 additions and 1 deletions

View file

@ -1,4 +1,4 @@
name: Buill NixOS Configurations
name: Build NixOS Configurations
on: [push]
jobs:

View file

@ -112,6 +112,15 @@
"ubuntu-20.04:docker://node:16-bullseye"
"ubuntu-18.04:docker://node:16-buster"
];
settings.container = {
options = ''
;
-e PATH=:${pkgs.nix}/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
-e NIX_PATH=nixpkgs=flake:nixpkgs:/nix/var/nix/profiles/per-user/root/channels
-e NIX_REMOTE=daemon
'';
valid_volumes = [ "/nix" ];
};
};
};
};