mirror of
https://github.com/elitak/nixos-infect
synced 2024-11-10 05:54:20 +00:00
mostly docs
This commit is contained in:
parent
8a76425fbe
commit
c769beaddf
1 changed files with 59 additions and 32 deletions
51
nixos-infect
51
nixos-infect
|
@ -1,10 +1,38 @@
|
||||||
#! /usr/bin/env bash
|
#! /usr/bin/env bash
|
||||||
set -e
|
|
||||||
|
# WARNING NB This script wipes out the targeted host's root filesystem when it
|
||||||
|
# runs to completion. Any errors halt execution. set -x is used to help debug,
|
||||||
|
# as often a failed run leaves the system in an inconsistent state, requiring a
|
||||||
|
# rebuild (in DigitalOcean panel: Droplet Settings -> "Destroy" -> "Rebuild
|
||||||
|
# from original").
|
||||||
|
#
|
||||||
|
# TO USE:
|
||||||
|
# - Add any custom config you want (see notes below)
|
||||||
|
# - Deploy a Debian 8.3 x64 droplet (enable ipv6; add your ssh key)
|
||||||
|
# - cat customConfig.optional nixos-infect | ssh root@targethost bash
|
||||||
|
#
|
||||||
|
# This was last tested with the DigitalOcean Debian 8.3 x64 image. Different
|
||||||
|
# versions as well as the Ubuntu images should work as well, but then, there's
|
||||||
|
# not much point in selecting something different if you intend to wipe out the
|
||||||
|
# fs as this does. You may need to make minor modifications to use in other
|
||||||
|
# templates, but basically all that will ever need tweaking should be:
|
||||||
|
# /etc/nixos/{,hardware-}configuration.nix, inline in this file
|
||||||
|
# /etc/nixso/networking.nix, generated at runtime (no ipv6? different number of adapters?)
|
||||||
|
#
|
||||||
|
# Motivation: nixos-assimilate should supplant this script entirely, if it's
|
||||||
|
# ever completed. nixos-in-place was quite broken when I tried it, and also
|
||||||
|
# took a pretty janky approach that was substantially more complex than this
|
||||||
|
# (although it supported more platforms): it didn't install to root (/nixos
|
||||||
|
# instead), left dregs of the old filesystem (almost always unnecessary since
|
||||||
|
# starting from a fresh deployment), and most importantly, simply didn't work for
|
||||||
|
# me! (old system was being because grub wasnt properly reinstalled)
|
||||||
|
|
||||||
|
set -ex
|
||||||
|
|
||||||
makeConf() {
|
makeConf() {
|
||||||
# XXX NB remember to escape / $ ` in heredocs!
|
# NB remember to escape / $ ` in heredocs!
|
||||||
# TODO use appended archive or some curl-able tarball?
|
# TODO use appended archive or some curl-able tarball?
|
||||||
mkdir -p /etc/nixos/shared
|
mkdir -p /etc/nixos
|
||||||
cat > /etc/nixos/networking.nix << EOF
|
cat > /etc/nixos/networking.nix << EOF
|
||||||
# This file will be populated at runtime with the
|
# This file will be populated at runtime with the
|
||||||
# networking details gathered from the active system.
|
# networking details gathered from the active system.
|
||||||
|
@ -15,19 +43,18 @@ cat > /etc/nixos/configuration.nix <<EOF
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./networking.nix
|
./networking.nix
|
||||||
#./shared/essentials.nix
|
|
||||||
#./shared/user-settings.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
networking.hostName = "$(hostname)";
|
|
||||||
time.timeZone = "America/Los_Angeles";
|
time.timeZone = "America/Los_Angeles";
|
||||||
boot.cleanTmpDir = true;
|
boot.cleanTmpDir = true;
|
||||||
|
|
||||||
services.openssh.enable = true;
|
|
||||||
services.tlsdated.enable = true;
|
services.tlsdated.enable = true;
|
||||||
#services.tlsdated.extraOptions = ""; # BUG fixed in unstable
|
services.openssh.enable = true;
|
||||||
|
|
||||||
networking.firewall.allowPing = true;
|
networking.firewall.allowPing = true;
|
||||||
|
networking.hostName = "$(hostname)";
|
||||||
|
users.users.root.openssh.authorizedKeys.keys = [ ''
|
||||||
|
$(cat /root/.ssh/authorized_keys | head -n1)
|
||||||
|
'' ];
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
# (nixos-generate-config will add qemu-user and bind-mounts, so avoid)
|
# (nixos-generate-config will add qemu-user and bind-mounts, so avoid)
|
||||||
|
@ -63,7 +90,7 @@ makeSwap() {
|
||||||
}
|
}
|
||||||
|
|
||||||
makeConf
|
makeConf
|
||||||
makeSwap # TODO check if actually needed? seem to recall smallest size would die.
|
makeSwap # smallest (512MB) droplet needs extra memory!
|
||||||
|
|
||||||
apt-get install -y curl sudo rsync
|
apt-get install -y curl sudo rsync
|
||||||
|
|
||||||
|
@ -100,8 +127,7 @@ swapoff /swap
|
||||||
mount -B / $oldRootMount
|
mount -B / $oldRootMount
|
||||||
rsync -a --delete --exclude=$(dirname $newRootMount) $newRootMount/ $oldRootMount
|
rsync -a --delete --exclude=$(dirname $newRootMount) $newRootMount/ $oldRootMount
|
||||||
|
|
||||||
# restore access to commands (TODO not sure whih of these 3 are essential, nor if order matters XXX)
|
# restore access to commands
|
||||||
export PATH=/nix/var/nix/profiles/system/sw/bin:/nix/var/nix/profiles/system/sw/sbin
|
|
||||||
/nix/var/nix/profiles/system/activate
|
/nix/var/nix/profiles/system/activate
|
||||||
source /nix/var/nix/profiles/system/etc/profile
|
source /nix/var/nix/profiles/system/etc/profile
|
||||||
|
|
||||||
|
@ -140,4 +166,5 @@ EOF
|
||||||
nixos-rebuild boot --install-grub
|
nixos-rebuild boot --install-grub
|
||||||
|
|
||||||
sync
|
sync
|
||||||
|
echo "You may now Ctrl-C or otherwise terminate this process."
|
||||||
reboot -f
|
reboot -f
|
||||||
|
|
Loading…
Reference in a new issue