diff options
author | Soispha <soispha@vhack.eu> | 2023-04-10 10:58:33 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-05-09 19:30:01 +0200 |
commit | 04e269a1e25ff8b75099f2113edee728d04429a8 (patch) | |
tree | f2fed6efd2938fb86b98681655395f1e42cbd790 /bootstrap | |
parent | Feat(flake): Activate content-addressed derivations (diff) | |
download | nixos-config-04e269a1e25ff8b75099f2113edee728d04429a8.tar.gz nixos-config-04e269a1e25ff8b75099f2113edee728d04429a8.zip |
Fix(treewide): Remove the reference to inputs
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 93e7aca1..bd32a136 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 "." '/inputs.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; +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; while ! grep "$host" "$hosts" > /dev/null || [ "$(printf "%s" "$host" | wc -c)" -eq 0 ]; do i=1; |