Difference between revisions of "Nix Ecosystem"

From NixOS Wiki
Jump to: navigation, search
Line 6: Line 6:
 
| ''Component''
 
| ''Component''
 
| ''Description''
 
| ''Description''
| ''Usecases''
+
| ''Use''
 
|-
 
|-
 
| [[Nix Package Manager]]
 
| [[Nix Package Manager]]
Line 14: Line 14:
 
| [[NixOS]]
 
| [[NixOS]]
 
| A Linux distribution with ''all'' components built by Nix, and thus supporting reproducible and declarative system-wide configuration management as well as atomic upgrades and rollbacks.  
 
| A Linux distribution with ''all'' components built by Nix, and thus supporting reproducible and declarative system-wide configuration management as well as atomic upgrades and rollbacks.  
| Declaratively configuration of desktops, servers & clusters
+
| Declaratively configure desktops, servers & clusters
 
|-
 
|-
 
| [[Nixpkgs]]
 
| [[Nixpkgs]]
 
| The largest community maintained Nix package and NixOS module repository; standard releases of NixOS are hosted here.
 
| The largest community maintained Nix package and NixOS module repository; standard releases of NixOS are hosted here.
Sharing Nix packages & developing NixOS
+
Share Nix packages & developing NixOS
 
|-
 
|-
 
| [[NixOps]]
 
| [[NixOps]]
 
| A Nix based deployment and provisioning tool allowing declarative specification of remote NixOS systems, VMs and containers; supports AWS, Hetzner, GCE and some other cloud providers out of box.
 
| A Nix based deployment and provisioning tool allowing declarative specification of remote NixOS systems, VMs and containers; supports AWS, Hetzner, GCE and some other cloud providers out of box.
| Deploying & provisioning NixOS systems, VMs & containers
+
| Deploy & provision NixOS systems, VMs & containers
 
|-
 
|-
 
| [[Hydra]]
 
| [[Hydra]]
 
| A Nix based continuous build system.
 
| A Nix based continuous build system.
Continuous integration build farms
+
CI build farms
 
|}  
 
|}  
  

Revision as of 17:17, 25 November 2017

The Nix Ecosystem is a collection of technologies designed to reproducibly build and declaratively configure and manage packages and systems as well as their dependencies. It achieves this by translating the functional paradigm from the program to the system domain by utilizing a dynamic, functional and lazy DSL called the Nix Expression Language for specifying reproducible builds.

Core Components of the Nix Ecosystem:
Component Description Use
Nix Package Manager A package manager that parses Nix expressions specifying reproducible build, putting the result in a store address with a hash of the dependency tree, sidestepping dependency hell and supporting multiversion installs and rollbacks. Reproducible builds & package management in Linux & Darwin
NixOS A Linux distribution with all components built by Nix, and thus supporting reproducible and declarative system-wide configuration management as well as atomic upgrades and rollbacks. Declaratively configure desktops, servers & clusters
Nixpkgs The largest community maintained Nix package and NixOS module repository; standard releases of NixOS are hosted here. Share Nix packages & developing NixOS
NixOps A Nix based deployment and provisioning tool allowing declarative specification of remote NixOS systems, VMs and containers; supports AWS, Hetzner, GCE and some other cloud providers out of box. Deploy & provision NixOS systems, VMs & containers
Hydra A Nix based continuous build system. CI build farms

In addition there are many other applications developed by the Nix community, utilizing and supporting these core technologies.

Nixos-stack2.png