PortValhalla/scripts/Common/OS/install.fish

44 lines
1.2 KiB
Fish
Raw Normal View History

2024-07-13 13:12:35 +00:00
#!/bin/env fish
set -l dir (status dirname)
source "$dir/../Scripts/config.fish"
source "$dir/../Scripts/hooks.fish"
2024-07-16 20:17:07 +00:00
function configureNix -V dir
source "$dir/../Software/nix/main.fish" configure user
2024-07-13 13:12:35 +00:00
end
if [ (id -u) -eq 0 ]
2024-07-16 20:17:07 +00:00
configureNix
2024-07-13 13:12:35 +00:00
set -l name (getConfig valhalla.setupUser.name)
set -l sudoConfig "/etc/sudoers.d/PortValhalla"
runHook createUser || \
begin
useradd \
--comment "PortValhalla setup user" \
--system \
--no-user-group \
2024-07-15 11:17:00 +00:00
--groups wheel,nix-users \
2024-07-13 13:12:35 +00:00
--create-home \
--uid (getConfig valhalla.setupUser.id --json) \
"$name"
end
and begin
echo "$name ALL=(ALL:ALL) NOPASSWD: ALL"
end > "$sudoConfig"
and sudo --preserve-env="CONFIG_MODULE" --user "$name" "$INSTALLER_SCRIPT"
rm "$sudoConfig"
2024-07-13 13:49:55 +00:00
userdel -r "$name"
2024-07-13 13:12:35 +00:00
else
2024-07-16 20:17:07 +00:00
configureNix
source "$dir/../Software/bash/main.fish"
2024-07-13 13:49:55 +00:00
runHook initialize || true
runHook installDrivers || true
runHook installOS || true
runHook installSoftware || true
runHook initializeConfig || true
runHook postInstall || true
2024-07-13 13:12:35 +00:00
end