15 lines
331 B
Fish
Executable file
15 lines
331 B
Fish
Executable file
#!/bin/env fish
|
|
begin
|
|
set -l dir (status dirname)
|
|
|
|
function installValhallaDeps -V dir
|
|
source "$dir/../lib/software.fish"
|
|
and pacinst fish git jq nix sudo tmux
|
|
end
|
|
|
|
function getDeploymentScript -V dir
|
|
echo "$dir/../lib/deploy.fish"
|
|
end
|
|
|
|
source "$dir/../../Common/OS/backup.fish"
|
|
end
|