2024-06-27 16:30:54 +02:00
|
|
|
Install a system via nixos-anywhere
|
2024-03-21 15:00:36 +01:00
|
|
|
|
|
|
|
```bash
|
2024-07-19 12:19:43 +02:00
|
|
|
$ nix run github:numtide/nixos-anywhere -- \
|
2024-03-21 15:00:36 +01:00
|
|
|
--flake 'git+https://git.hoyer.xyz/harald/nixcfg'.#hostname \
|
|
|
|
root@hostname --no-reboot --tty -i $HOME/.ssh/id_ed25519
|
|
|
|
... enter disk password
|
2024-07-19 12:19:43 +02:00
|
|
|
$ ssh -t root@hostname systemd-cryptenroll /dev/luksdev --wipe-slot=tpm2 --tpm2-device=auto --tpm2-pcrs=1,15
|
2024-03-21 15:00:36 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
nixos-rebuild remote git flake
|
|
|
|
|
|
|
|
```bash
|
2024-07-19 12:19:43 +02:00
|
|
|
$ nixos-rebuild --use-remote-sudo -L --show-trace --refresh --flake git+https://git.hoyer.xyz/harald/nixcfg boot
|
2024-03-21 15:00:36 +01:00
|
|
|
```
|
2024-07-19 12:19:43 +02:00
|
|
|
on darwin
|
2024-03-21 15:00:36 +01:00
|
|
|
|
|
|
|
```bash
|
2024-07-19 13:39:45 +02:00
|
|
|
$ darwin-rebuild -L --show-trace --refresh --flake git+https://git.hoyer.xyz/harald/nixcfg switch
|
2024-03-21 15:00:36 +01:00
|
|
|
```
|
|
|
|
|
2024-07-19 12:19:43 +02:00
|
|
|
|
|
|
|
home-manager remote git flake
|
2024-03-21 15:00:36 +01:00
|
|
|
|
|
|
|
```bash
|
2024-07-19 12:19:43 +02:00
|
|
|
$ nix --refresh run 'git+https://git.hoyer.xyz/harald/nixcfg' -- \
|
|
|
|
switch -b backup --flake 'git+https://git.hoyer.xyz/harald/nixcfg'
|
2024-03-21 15:00:36 +01:00
|
|
|
```
|
2024-07-19 12:19:43 +02:00
|
|
|
|