diff options
author | Soispha <soispha@vhack.eu> | 2023-07-02 13:01:36 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-07-10 16:44:20 +0200 |
commit | eb6a837828134ef034a6ee9b0feec197c52f8bc7 (patch) | |
tree | ed4dc09af0182e058534866935974bfba3f6f5f4 /bootstrap/02_setup | |
parent | Fix(system/disks): Add remainder about bootable option (diff) | |
download | nixos-config-eb6a837828134ef034a6ee9b0feec197c52f8bc7.zip |
Fix(bootstrap): Only set environment variables once
Diffstat (limited to 'bootstrap/02_setup')
-rwxr-xr-x | bootstrap/02_setup | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bootstrap/02_setup b/bootstrap/02_setup index 68affe85..48109d43 100755 --- a/bootstrap/02_setup +++ b/bootstrap/02_setup @@ -17,8 +17,7 @@ chmod 700 /mnt/srv/home case "$SETUP_TO_CONFIG_SETUP" in "yes") - nix run "git+https://codeberg.org/soispha/nixos-config#config_setup" --experimental-features 'nix-command flakes'; - ;; - *) + nix run "git+https://codeberg.org/soispha/nixos-config#config_setup" --experimental-features 'nix-command flakes' ;; + *) ;; esac |