mirror of
https://gitlab.com/ahoneybun/nyxi-installer.git
synced 2025-05-12 11:04:02 -06:00
add omen and reorder hosts
This commit is contained in:
parent
2704e92aea
commit
beb42a25e9
1 changed files with 16 additions and 10 deletions
26
install.sh
26
install.sh
|
@ -41,37 +41,43 @@ cat << EOF
|
||||||
Which device are you installing to?
|
Which device are you installing to?
|
||||||
1) Virtual Machine
|
1) Virtual Machine
|
||||||
2) HP Dev One
|
2) HP Dev One
|
||||||
3) Thelio B1 (NVIDIA)
|
3) HP Omen
|
||||||
4) Galago Pro 3b (Garrus)
|
4) Thelio B1 (NVIDIA)
|
||||||
5) Nebula49 (Shepard)
|
5) Galago Pro 3b (Garrus)
|
||||||
|
6) Nebula49 (Shepard)
|
||||||
0) Generic
|
0) Generic
|
||||||
EOF
|
EOF
|
||||||
read deviceChoice
|
read hostChoice
|
||||||
|
|
||||||
if [ $deviceChoice = 1 ]; then
|
if [ $hostChoice = 1 ]; then
|
||||||
curl https://gitlab.com/ahoneybun/nix-configs/-/raw/main/hosts/vm.nix > vm.nix; sudo mv -f vm.nix /mnt/etc/nixos/
|
curl https://gitlab.com/ahoneybun/nix-configs/-/raw/main/hosts/vm.nix > vm.nix; sudo mv -f vm.nix /mnt/etc/nixos/
|
||||||
sudo nixos-install --flake /mnt/etc/nixos#vm
|
sudo nixos-install --flake /mnt/etc/nixos#vm
|
||||||
|
|
||||||
elif [ $deviceChoice = 2 ]; then
|
elif [ $hostChoice = 2 ]; then
|
||||||
curl https://gitlab.com/ahoneybun/nix-configs/-/raw/main/desktops/gnome.nix > gnome.nix; sudo mv -f gnome.nix /mnt/etc/nixos/
|
curl https://gitlab.com/ahoneybun/nix-configs/-/raw/main/desktops/gnome.nix > gnome.nix; sudo mv -f gnome.nix /mnt/etc/nixos/
|
||||||
sudo nixos-install --flake /mnt/etc/nixos#dev-one
|
sudo nixos-install --flake /mnt/etc/nixos#dev-one
|
||||||
|
|
||||||
elif [ $deviceChoice = 3 ]; then
|
elif [ $hostChoice = 3 ]; then
|
||||||
|
curl https://gitlab.com/ahoneybun/nix-configs/-/raw/main/hosts/x86_64/hp-omen.nix > hp-omen.nix; sudo mv -f hp-omen.nix /mnt/etc/nixos/
|
||||||
|
curl https://gitlab.com/ahoneybun/nix-configs/-/raw/main/desktops/gnome.nix > gnome.nix; sudo mv -f gnome.nix /mnt/etc/nixos/
|
||||||
|
sudo nixos-install --flake /mnt/etc/nixos#omen
|
||||||
|
|
||||||
|
elif [ $hostChoice = 4 ]; then
|
||||||
curl https://gitlab.com/ahoneybun/nix-configs/-/raw/main/hosts/x86_64/thelio-nvidia.nix > thelio-nvidia.nix; sudo mv -f thelio-nvidia.nix /mnt/etc/nixos/
|
curl https://gitlab.com/ahoneybun/nix-configs/-/raw/main/hosts/x86_64/thelio-nvidia.nix > thelio-nvidia.nix; sudo mv -f thelio-nvidia.nix /mnt/etc/nixos/
|
||||||
curl https://gitlab.com/ahoneybun/nix-configs/-/raw/main/desktops/gnome.nix > gnome.nix; sudo mv -f gnome.nix /mnt/etc/nixos/
|
curl https://gitlab.com/ahoneybun/nix-configs/-/raw/main/desktops/gnome.nix > gnome.nix; sudo mv -f gnome.nix /mnt/etc/nixos/
|
||||||
sudo nixos-install --flake /mnt/etc/nixos#thelio-b1
|
sudo nixos-install --flake /mnt/etc/nixos#thelio-b1
|
||||||
|
|
||||||
elif [ $deviceChoice = 4 ]; then
|
elif [ $hostChoice = 5 ]; then
|
||||||
curl https://gitlab.com/ahoneybun/nix-configs/-/raw/main/hosts/x86_64/garrus/configuration.nix > garrus.nix; sudo mv -f garrus.nix /mnt/etc/nixos/
|
curl https://gitlab.com/ahoneybun/nix-configs/-/raw/main/hosts/x86_64/garrus/configuration.nix > garrus.nix; sudo mv -f garrus.nix /mnt/etc/nixos/
|
||||||
curl https://gitlab.com/ahoneybun/nix-configs/-/raw/main/desktops/gnome.nix > gnome.nix; sudo mv -f gnome.nix /mnt/etc/nixos/
|
curl https://gitlab.com/ahoneybun/nix-configs/-/raw/main/desktops/gnome.nix > gnome.nix; sudo mv -f gnome.nix /mnt/etc/nixos/
|
||||||
sudo nixos-install --flake /mnt/etc/nixos#garrus
|
sudo nixos-install --flake /mnt/etc/nixos#garrus
|
||||||
|
|
||||||
elif [ $deviceChoice = 5 ]; then
|
elif [ $hostChoice = 6 ]; then
|
||||||
curl https://gitlab.com/ahoneybun/nix-configs/-/raw/main/hosts/x86_64/shepard/configuration.nix > shepard.nix; sudo mv -f shepard.nix /mnt/etc/nixos/
|
curl https://gitlab.com/ahoneybun/nix-configs/-/raw/main/hosts/x86_64/shepard/configuration.nix > shepard.nix; sudo mv -f shepard.nix /mnt/etc/nixos/
|
||||||
curl https://gitlab.com/ahoneybun/nix-configs/-/raw/main/desktops/gnome.nix > gnome.nix; sudo mv -f gnome.nix /mnt/etc/nixos/
|
curl https://gitlab.com/ahoneybun/nix-configs/-/raw/main/desktops/gnome.nix > gnome.nix; sudo mv -f gnome.nix /mnt/etc/nixos/
|
||||||
sudo nixos-install --flake /mnt/etc/nixos#shepard
|
sudo nixos-install --flake /mnt/etc/nixos#shepard
|
||||||
|
|
||||||
elif [ $deviceChoice = 0 ]; then
|
elif [ $hostChoice = 0 ]; then
|
||||||
curl https://gitlab.com/ahoneybun/nix-configs/-/raw/flake/flake.nix > flake.nix; sudo mv -f flake.nix /mnt/etc/nixos/
|
curl https://gitlab.com/ahoneybun/nix-configs/-/raw/flake/flake.nix > flake.nix; sudo mv -f flake.nix /mnt/etc/nixos/
|
||||||
sudo nixos-install --flake /mnt/etc/nixos#nixos
|
sudo nixos-install --flake /mnt/etc/nixos#nixos
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue