diff options
author | ene <ene@sils.li> | 2023-03-21 17:14:40 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-03-21 17:14:40 +0100 |
commit | ac3002cee9e9a4a3bee7b5df26eb36ed3932b8db (patch) | |
tree | 2af3e86de0854fb2341ec2b4c867c38356e8c0b1 /bootstrap/setup/setup.sh | |
parent | Fix(bootstrap): Add additional dependencies (diff) | |
download | nixos-config-ac3002cee9e9a4a3bee7b5df26eb36ed3932b8db.zip |
Fix(bootstrap): Use experimental nix features
Diffstat (limited to 'bootstrap/setup/setup.sh')
-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 3ea4af0b..6cbd8ee1 100755 --- a/bootstrap/setup/setup.sh +++ b/bootstrap/setup/setup.sh @@ -35,7 +35,7 @@ chmod 777 /mnt/srv/home readp "Do you want to continue with the user configuration setup?[N/y]: " result; case "$result" in [yY]) - nix run "git+https://git.sils.li/ene/nixos-config#config_setup"; + nix run "git+https://git.sils.li/ene/nixos-config#config_setup" --experimental-features 'nix-command flakes'; ;; *) msg "Well, if you want to do everything yourself..." |