-
Notifications
You must be signed in to change notification settings - Fork 427
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0e623cc
commit b8a523d
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Assignment Proposal | ||
|
||
## Title | ||
|
||
Declarative and reproducible deployments with NixOS | ||
|
||
## Names and KTH ID | ||
|
||
- Diogo Correia ([email protected]) | ||
- Tomás Esteves ([email protected]) | ||
|
||
## Deadline | ||
|
||
Week 5 | ||
|
||
## Category | ||
|
||
Demo | ||
|
||
## Description | ||
|
||
NixOS is an immutable Linux distribution that aims to be reproducible | ||
and declarative thanks to the underlying Nix functional language. | ||
Through the Nix language, it is possible to declare all aspects of a system, | ||
ensuring that the result will always be the same, no matter when or where | ||
the system configuration is deployed. | ||
Other properties of NixOS include easy rollbacks, dependency pinning for each package, | ||
specialisations, cleanup of previous configurations, and more. | ||
|
||
In this demo, we will show the audience how to deploy a fully-configured NixOS | ||
system in seconds, using tools like nixos-anywhere to bootstrap the installation | ||
and disko to declare disk partitions. | ||
|
||
**Relevance** | ||
|
||
NixOS (and the associated Nix language and Nixpkgs package repository) are the pinnacle | ||
of Infrastructure as Code, allowing for a system to be completely defined through | ||
Nix code. | ||
This makes similar deployments extremely easy and scalable, as Nix code can be shared | ||
between many hosts. | ||
Additionally, updates to packages and configuration can be performed in bulk or in a | ||
CI/CD system and copied to the resulting systems. |