From f599ad153e4c32ab6e0eb47d37173c4604b59418 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Mon, 22 Aug 2022 17:55:22 -0600 Subject: [PATCH] Update configuration to be generic --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index d69030c..668cd29 100644 --- a/install.sh +++ b/install.sh @@ -113,12 +113,12 @@ read desktopChoice if [ $desktopChoice = 1 ]; then curl https://gitlab.com/ahoneybun/nix-configs/-/raw/main/plasma.nix > plasma.nix; sudo mv -f plasma.nix /mnt/etc/nixos/ - + sed -e '1n;/^./hardware-configuration.nix/a\plasma.nix' /mnt/etc/nixos/configuration.nix else if [ $desktopChoice = 2 ]; then curl https://gitlab.com/ahoneybun/nix-configs/-/raw/main/gnome.nix > gnome.nix; sudo mv -f gnome.nix /mnt/etc/nixos/ - + sed -e '1n;/^./hardware-configuration.nix/a\gnome.nix' /mnt/etc/nixos/configuration.nix fi fi