diff options
author | Soispha <soispha@vhack.eu> | 2023-04-10 12:32:27 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-05-09 19:30:06 +0200 |
commit | c28efb453df4d7f125dc69a6c89bef9c66f69500 (patch) | |
tree | d82b98f1653ed26ea7422ff65b6f0b40ca1cca94 /bootstrap | |
parent | Fix(flake): Only activate ca-derivations after feature activate (diff) | |
download | nixos-config-c28efb453df4d7f125dc69a6c89bef9c66f69500.tar.gz nixos-config-c28efb453df4d7f125dc69a6c89bef9c66f69500.zip |
Fix(treewide): Make system compile again
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap/setup/setup.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap/setup/setup.sh b/bootstrap/setup/setup.sh index bd32a136..1e3b4899 100755 --- a/bootstrap/setup/setup.sh +++ b/bootstrap/setup/setup.sh @@ -6,7 +6,7 @@ msg "Select a host-config:" hosts=$(mktmp); host=""; -awk -F "." '/pkgs.lib.nixosSystem/{print $1}' "$(tmp 'curl https://codeberg.org/ene/nixos-config/raw/branch/prime/flake/nixosConfigurations/default.nix 2> /dev/null')" | awk '{print $1}' > $hosts; +awk -F "." '/nixpkgs.lib.nixosSystem/{print $1}' "$(tmp 'curl https://codeberg.org/ene/nixos-config/raw/branch/prime/flake/nixosConfigurations/default.nix 2> /dev/null')" | awk '{print $1}' > $hosts; while ! grep "$host" "$hosts" > /dev/null || [ "$(printf "%s" "$host" | wc -c)" -eq 0 ]; do i=1; |