From 14b8ada912cbc1389db1ea10ed4ab530d7b947be Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Wed, 12 Mar 2025 15:39:08 -0600 Subject: [PATCH] add Pixel Slate to installer --- install.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index e7a2c5f..e2810a1 100644 --- a/install.sh +++ b/install.sh @@ -44,7 +44,8 @@ cat << EOF Which device are you installing to? 1) Virtual Machine 2) Lemur Pro 13 (Garrus) - 3) nebula49 (Shepard) + 3) Pixel Slate + 4) nebula49 (Shepard) 0) Generic EOF @@ -62,6 +63,11 @@ elif [ $hostChoice = 2 ]; then sudo nixos-install --flake /mnt/etc/nixos#garrus elif [ $hostChoice = 3 ]; then + curl https://gitlab.com/ahoneybun/nix-configs/-/raw/main/hosts/x86_64/pixel-slate.nix > pixel-slate.nix; sudo mv -f pixel-slate.nix /mnt/etc/nixos/ + #curl https://gitlab.com/ahoneybun/nix-configs/-/raw/main/desktops/lomiri.nix > gnome.nix; sudo mv -f gnome.nix /mnt/etc/nixos/ + sudo nixos-install --flake /mnt/etc/nixos#pixel-slate + +elif [ $hostChoice = 4 ]; 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/desktops/gnome.nix > gnome.nix; sudo mv -f gnome.nix /mnt/etc/nixos/ sudo nixos-install --flake /mnt/etc/nixos#shepard