We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 309ca42 commit 3ddda41Copy full SHA for 3ddda41
.github/workflows/CI.yml
@@ -48,7 +48,7 @@ jobs:
48
GC_DONT_GC: 1
49
run: |
50
for output in $(nix flake show --json | nix run nixpkgs#jq -- -r 'keys[]'); do
51
- nix build .#$output
+ nix build .#$output --accept-flake-config
52
if [ $(du -B1M result/iso/*.iso | cut -f1) -gt 2000 ]; then
53
split -d result/iso/*.iso -b 2000M nixos-$output.iso.part-
54
else
flake.nix
@@ -6,6 +6,12 @@
6
nixos-hardware.url = "github:NixOS/nixos-hardware";
7
};
8
9
+ nixConfig = {
10
+ extra-trusted-substituters = [ "https://cache.soopy.moe" ];
11
+ extra-substituters = [ "https://cache.soopy.moe" ];
12
+ extra-trusted-public-keys = [ "cache.soopy.moe-1:0RZVsQeR+GOh0VQI9rvnHz55nVXkFardDqfm4+afjPo=" ];
13
+ };
14
+
15
outputs = { self, nixpkgs, nixos-hardware }:
16
let
17
system = "x86_64-linux";
0 commit comments