Split nix configuration properly

This commit is contained in:
Manuel Thalmann 2024-07-20 04:31:09 +02:00
parent ec0416039a
commit c5149ef9b0

View file

@ -4,14 +4,14 @@ begin
source "$dir/../../Scripts/software.fish"
function configureSW -V dir -a scope
if [ "$scope" = "user" ]
set -l configFile ~/.config/nix/nix.conf
mkdir -p (dirname "$configFile")
cp "$dir/../../../../archiso/airootfs/root/.config/nix/nix.conf" "$configFile"
else
sudo nix-channel --add https://nixos.org/channels/nixpkgs-unstable
sudo nix-channel --update
end
sudo nix-channel --add https://nixos.org/channels/nixpkgs-unstable
sudo nix-channel --update
end
function userConfig -S -V dir -a name
set -l configFile ~"$name"/.config/nix/nix.conf
mkdir -p (dirname "$configFile")
cp "$dir/../../../../archiso/airootfs/root/.config/nix/nix.conf" "$configFile"
end
runInstaller $argv