You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
299 B

2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
  1. ## Build disk image
  2. ```bash
  3. nix build .#images
  4. ```
  5. ## Updates
  6. Run the following command and deploy afterwards
  7. ```bash
  8. nix flake update
  9. ```
  10. ## Deploy
  11. ```bash
  12. nix build .
  13. nix copy --to ssh://root@<ip-of-target> .
  14. ssh root@<ip-of-target> "$(nix path-info .)/bin/switch-to-configuration switch"
  15. ```