nixcfg/README.md

30 lines
811 B
Markdown
Raw Normal View History

Install a system via nixos-anywhere
2024-03-21 15:00:36 +01:00
```bash
$ 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
$ 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
$ 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
```
on darwin
2024-03-21 15:00:36 +01:00
```bash
$ darwin-rebuild -L --show-trace --refresh --flake git+https://git.hoyer.xyz/harald/nixcfg switch
2024-03-21 15:00:36 +01:00
```
home-manager remote git flake
2024-03-21 15:00:36 +01:00
```bash
$ 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
```