add shepard to options

This commit is contained in:
Aaron Honeycutt 2024-01-30 16:01:24 -07:00
parent c67b546b01
commit 46517ae8c8

View file

@ -43,6 +43,7 @@ Which device are you installing to?
2) HP Dev One 2) HP Dev One
3) Thelio B1 (NVIDIA) 3) Thelio B1 (NVIDIA)
4) Galago Pro 3b (Garrus) 4) Galago Pro 3b (Garrus)
5) Nebula49 (Shepard)
0) Generic 0) Generic
EOF EOF
read deviceChoice read deviceChoice
@ -65,6 +66,11 @@ elif [ $deviceChoice = 4 ]; 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#garrus sudo nixos-install --flake /mnt/etc/nixos#garrus
elif [ $deviceChoice = 5 ]; then
curl https://gitlab.com/ahoneybun/nix-configs/-/rawmain/systems/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/
sudo nixos-install --flake /mnt/etc/nixos#shepard
elif [ $deviceChoice = 0 ]; then elif [ $deviceChoice = 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