Compare commits

..

No commits in common. "e2cc3f5f342c9ca80d83e35ce8aa6dc2ff9e468a" and "297ef48f8e8bb5f50a16f9074b54bec6827eec6d" have entirely different histories.

5 changed files with 10 additions and 31 deletions

View file

@ -39,10 +39,10 @@ copy_and_prepare() {
# Copy template to root of repo
if [ "$install_type" == "e" ]
then
cp ./modules/ryan-config/deploy-templates/HostTemplateEncrypted ./$install_hostname.scm
cp ./modules/ryan-config/deploy-templates/HostTemplateEncrypted.scm ./$install_hostname.scm
elif [ "$install_type" == "d" ]
then
cp ./modules/ryan-config/deploy-templates/HostTemplate ./$install_hostname.scm
cp ./modules/ryan-config/deploy-templates/HostTemplate.scm ./$install_hostname.scm
else
echo "Invalid install type (not d or e), bailing!"
exit 1
@ -73,14 +73,16 @@ install_user_env() {
# System should be installed now, we can chroot in and configure the user profile now
# NOTE: This assumes the user "ryan" for things, so change the USER var if you change your username
# Copy some files over to prepare for reboot
# Mount the special block devices to prepare for chroot
mount --rbind /proc /mnt/proc
mount --rbind /sys /mnt/sys
mount --rbind /dev /mnt/dev
# chroot into system and run commands
USER=ryan
guix shell git -- git clone https://git.stationery.faith/ryan77627/guix-dotfiles /mnt/home/$USER/.config/guix
chroot /mnt <<EOT
cp ~/guix-dotfiles/$install_hostname.scm /mnt/home/$USER/.config/guix/$install_hostname.scm
cp ~/guix-dotfiles/modules/ryan-config/user_first_run.sh /mnt/home/$USER/.bashrc
chown 1000:1000 -R /mnt/home/ryan
EOT
}
@ -88,6 +90,3 @@ gather_env
copy_and_prepare
install_system
install_user_env
# Reboot the machine at this point!
reboot

View file

@ -1,20 +0,0 @@
#!/run/current-system/profile/bin/bash
# This should run on user first logon, so let's a go!
# First, we should run a guix pull
guix pull
hash guix
guix home -L ~/.config/guix/modules reconfigure ~/.config/guix/home-config/home-configuration.scm
sudo herd restart nix-daemon
nix-channel --update
nix-shell '<home-manager>' -A install
source ~/.bashrc
home-manager switch