PortValhalla/scripts/Arch/OS/install.fish

28 lines
708 B
Fish
Raw Normal View History

2024-07-13 13:12:35 +00:00
#!/bin/env fish
2024-07-14 01:05:26 +00:00
begin
set -l dir (status dirname)
2024-07-13 13:49:55 +00:00
function getDeploymentScript -V dir
echo "$dir/../Scripts/deploy.fish";
end
2024-07-14 01:05:26 +00:00
function initialize -V dir
source "$dir/../../Common/Scripts/wait-network.fish"
2024-07-15 11:12:46 +00:00
waitNetwork
or exit
2024-07-15 17:58:56 +00:00
sudo systemctl enable --now nix-daemon
2024-09-13 13:10:29 +00:00
and source "$dir/../Scripts/software.fish"
and source "$dir/../Software/base-devel/main.fish"
and source "$dir/../Software/pacman/main.fish"
and source "$dir/../Software/yay/main.fish"
2024-07-15 18:51:20 +00:00
2024-09-13 13:10:29 +00:00
and yayinst \
2024-09-19 19:20:41 +00:00
linux-headers \
2024-07-15 18:51:20 +00:00
pacman-contrib \
powershell-bin
2024-07-14 01:05:26 +00:00
end
2024-07-13 13:49:55 +00:00
2024-07-14 01:05:26 +00:00
source "$dir/../../Common/OS/install.fish"
end