2024-12-18 21:21:38 +00:00
|
|
|
# Nixin krops POC
|
|
|
|
This is a proof of concept of using krops to deploy nixos configuration generated by nixin
|
|
|
|
|
2024-12-19 10:07:32 +00:00
|
|
|
## Tips
|
|
|
|
Deploy configuration of only one server :
|
2024-12-18 21:21:38 +00:00
|
|
|
nix-build ./krops.nix -A arachnide && ./result
|
|
|
|
|
2024-12-19 10:07:32 +00:00
|
|
|
Deploy configration of all servers :
|
2024-12-18 21:21:38 +00:00
|
|
|
nix-build ./krops.nix -A all && ./result
|
|
|
|
|
2024-12-19 10:07:32 +00:00
|
|
|
Update th revision of nixpkgs that is used :
|
|
|
|
nix-prefetch-git --url https://github.com/NixOS/nixpkgs --rev "refs/heads/nixos-24.11" > nixpkgs.json
|
|
|
|
|
2024-12-18 21:21:38 +00:00
|
|
|
## References
|
|
|
|
- krops : https://github.com/krebs/krops
|
|
|
|
|