-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
125 lines (107 loc) · 4.19 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# Connectivity info for Linux VM
#export NIXADDR=192.168.0.175
# NIXADDR ?= unset
NIXADDR ?= unset
NIXPORT ?= 22
NIXUSER ?= matt
# Get the path to this Makefile and directory
MAKEFILE_DIR := $(patsubst %/,%,$(dir $(abspath $(lastword $(MAKEFILE_LIST)))))
# The name of the nixosConfiguration in the flake
# MRNOTE not vm-intel, fully arm
NIXNAME ?= baremetal
# SSH options that are used. These aren't meant to be overridden but are
# reused a lot so we just store them up here.
SSH_OPTIONS=-o PubkeyAuthentication=no -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no
switch:
sudo NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=1 nixos-rebuild switch --flake ".#${NIXNAME}"
switch-logs:
sudo NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=1 nixos-rebuild switch --flake ".#${NIXNAME}" --print-build-logs
test:
sudo NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=1 nixos-rebuild test --flake ".#$(NIXNAME)"
list:
sudo nix-env --list-generations -p /nix/var/nix/profiles/system
clean:
sudo nix-collect-garbage
clean-generations:
sudo nix-collect-garbage --delete-older-than 30d
optimize:
nix-store --optimise
# https://www.reddit.com/r/NixOS/comments/10107km/how_to_delete_old_generations_on_nixos/
clean-boot-partition:
sudo /run/current-system/bin/switch-to-configuration boot
set-current:
sudo nix-env -p /nix/var/nix/profiles/system --switch-generation $(gen)
# bootstrap a brand new VM. The VM should have NixOS ISO on the CD drive
# and just set the password of the root user to "root". This will install
# NixOS. After installing NixOS, you must reboot and set the root password
# for the next step.
#
# NOTE(mitchellh): I'm sure there is a way to do this and bootstrap all
# in one step but when I tried to merge them I got errors. One day.
vm/bootstrap0:
ssh $(SSH_OPTIONS) -p$(NIXPORT) root@$(NIXADDR) " \
parted /dev/sda -- mklabel gpt; \
parted /dev/sda -- mkpart primary 512MB -8GB; \
parted /dev/sda -- mkpart primary linux-swap -8GB 100\%; \
parted /dev/sda -- mkpart ESP fat32 1MB 512MB; \
parted /dev/sda -- set 3 esp on; \
sleep 1; \
mkfs.ext4 -L nixos /dev/sda1; \
mkswap -L swap /dev/sda2; \
mkfs.fat -F 32 -n boot /dev/sda3; \
sleep 1; \
mount /dev/disk/by-label/nixos /mnt; \
mkdir -p /mnt/boot; \
mount /dev/disk/by-label/boot /mnt/boot; \
nixos-generate-config --root /mnt; \
sed --in-place '/system\.stateVersion = .*/a \
nix.package = pkgs.nixVersions.latest;\n \
nix.extraOptions = \"experimental-features = nix-command flakes\";\n \
services.openssh.enable = true;\n \
services.openssh.settings.PasswordAuthentication = true;\n \
services.openssh.settings.PermitRootLogin = \"yes\";\n \
users.users.root.initialPassword = \"root\";\n \
' /mnt/etc/nixos/configuration.nix; \
nixos-install --no-root-passwd && reboot; \
"
# after bootstrap0, run this to finalize. After this, do everything else
# in the VM unless secrets change.
vm/bootstrap:
NIXUSER=root $(MAKE) vm/copy
NIXUSER=root $(MAKE) vm/switch
$(MAKE) vm/secrets
ssh $(SSH_OPTIONS) -p$(NIXPORT) $(NIXUSER)@$(NIXADDR) " \
sudo reboot; \
"
# copy our secrets into the VM
vm/secrets:
# GPG keyring
#rsync -av -e 'ssh $(SSH_OPTIONS)' \
# --exclude='.#*' \
# --exclude='S.*' \
# --exclude='*.conf' \
# $(HOME)/.gnupg/ $(NIXUSER)@$(NIXADDR):~/.gnupg
# SSH keys
# MRNOTE Added L as currently they're symlinks
#rsync -avL -e 'ssh $(SSH_OPTIONS)' \
rsync -av -e 'ssh $(SSH_OPTIONS) -p$(NIXPORT)' \
--exclude='environment' \
$(HOME)/.ssh/ $(NIXUSER)@$(NIXADDR):~/.ssh
# copy the Nix configurations into the VM.
vm/copy:
rsync -av -e 'ssh $(SSH_OPTIONS) -p$(NIXPORT)' \
--exclude='vendor/' \
--exclude='.git/' \
--rsync-path="sudo rsync" \
$(MAKEFILE_DIR)/ $(NIXUSER)@$(NIXADDR):/nix-config
# have to run vm/copy before.
# run the nixos-rebuild switch command. This does NOT copy files so you
#if it complains about error upgrading system... use the --install-bootloader flag
#sudo NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=1 nixos-rebuild switch --install-bootloader --flake \"/nix-config#${NIXNAME}\" \
vm/switch:
ssh $(SSH_OPTIONS) -p$(NIXPORT) $(NIXUSER)@$(NIXADDR) " \
sudo NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=1 nixos-rebuild switch --flake \"/nix-config#${NIXNAME}\" \
"
# Build an ISO image
iso/nixos.iso:
cd iso; ./build.sh