Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork64
A set of Terraform modules that are designed to deploy NixOS [maintainer=@adrian-gierakowski]
License
nix-community/terraform-nixos
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
This repository contains a set of Terraform Modules designed to deploy NixOSmachines. These modules are designed to work together and support differentdeployment scenarios.
Terraform is a tool that allows to declare infrastructures ascode.
Nix is a build system and package manager that allows to manage wholesystem configurations as code. nixpkgs is a set of 20k+ packages built withNix. NixOS is a Linux distribution built on top of nixpkgs.
A Terraform Module refers to a self-contained package of Terraformconfigurations that are managed as a group. This repo contains a collection ofTerraform Modules which can be composed together to create usefulinfrastructure patterns.
NixOps is a great tool for personal deployments. It handles a lot of thingslike cloud resource creation, machine NixOS bootstrapping and deployment.
The difficulty is when the cloud resources are not supported by NixOps. Ittakes a lot of work to map all the cloud APIs. Compared to NixOps, Terraformhas become an industry standard and has thousands of people contributing newcloud API mapping all the time.
Another issue is when sharing the configuration as code with multipledevelopers. Both NixOps and Terraform maintain a state file of "known applied"configuration. Unlike NixOps, Terraform provides facilities to sync and lockthe state file so it's available by other users.
The approach here is to use Terraform to create all the cloud resources. Byusing thegoogle_image_nixos_custom module it's possible to pre-build images inauto-scaling scenarios. Or use a push model similar to NixOps with the genericdeploy_nixos module.
So overall Terraform + Nix is more flexible and scales better. But it's alsomore cumbersome to use as it requires to learn two languages instead of oneand the integration between both is also a bit clunky.
The list of modules provided by this project:
- deploy_nixos - deploy NixOS onto running NixOSmachines
- google_image_nixos - setup an official GCEimage into a Google Cloud Project.
- google_image_nixos_custom - build anddeploy a custom GCE image into a Google Cloud Project
Terraform supports importingmodules directlyfrom a GitHub repository.
For example, to use thedeploy_nixos module:
module "deploy_nixos" { source = "github.com/tweag/terraform-nixos//deploy_nixos?ref=ced68729b6a0382dda02401c8f663c9b29c29368" … module-specific fields …}Beware the double//, which separates the github repository url from thesubdirectory that contains the module.?ref= specifies a specific git refof the repository, in this case the commitced687….
To better understand how these modules can be used together, look into the./examples folder.
- Support other cloud providers.
- Support nixos-infect bootstrapping method.
Contributions are welcome!
Thanks toDigital Asset for generously sponsoring this work!
Thanks toTweag for enabling this work and the continuous support!
This code is released under the Apache 2.0 License. Please seeLICENSE for more details.
Copyright © 2018 Tweag I/O.
About
A set of Terraform modules that are designed to deploy NixOS [maintainer=@adrian-gierakowski]
Topics
Resources
License
Code of conduct
Security policy
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
Sponsor this project
Uh oh!
There was an error while loading.Please reload this page.
Packages0
Uh oh!
There was an error while loading.Please reload this page.