13 lines
287 B
Fish
Executable file
13 lines
287 B
Fish
Executable file
#!/bin/env fish
|
|
begin
|
|
set -l dir (status dirname)
|
|
source "$dir/../../Scripts/software.fish"
|
|
|
|
function configureSW -V dir -a scope
|
|
sudo nix-channel --add https://nixos.org/channels/nixpkgs-unstable
|
|
sudo nix-channel --update
|
|
end
|
|
|
|
runInstaller $argv
|
|
end
|