performs fully automated deployment. This is a good thing because it ensures that deployments are reproducible.It performs provisioning.
What is the difference between provisioning and deployment?
performs fully automated deployment. This is a good thing because it ensures that deployments are reproducible.It performs provisioning.
What is the difference between provisioning and deployment?
missing virtual machines
Typo? Missing -> spinning
The easiest way I've found to manage that is to copy hardware-configuration.nix and a minimal version of configuration.nix and import it into the NixOps config for the corresponding machine. (I keep them in a git submodule, but keeping them in the same repo could also make sense.) 1 Pick your reaction
If I understood it correctly, take the hardware-configration.nix
from the target machine, and put it into the NixOps config.
Also relevant: Minimal NixOS config for Nixops deployment (discourse)
Install the latest version of NixOps. $ nix-env -i nixops
... or list it in environment.systemPackages
in /etc/nixos/configuration.nix
, and nixos-rebuild switch
.
What is the relationship between Disnix and NixOps?