aliases:
tags:
- Type/Tech/Platform/Nix
- tech/nix
- seed
publish: true
version: 1
dateCreated: 2023-07-27, 11:57
dateModified: 2024-02-25, 18:08
from:
- "[[Nix Distributions]]"
related:
contra:
to:
for:
NixOS is a free and open-source Linux distribution based on the purely functional Nix package manager. NixOS is composed using modules and packages defined in the nixpkgs project. | |
---|---|
wikipedia:: NixOS | |
url:: NixOS |
A NixOS system is configured by writing a specification of the functionality that the user wants on their machine in a global configuration file (typically located in /etc/nixos). The following is a minimal configuration of a machine running an SSH daemon:[15]
{
boot.loader.grub.device = "/dev/sda";
fileSystems."/".device = "/dev/sda1";
services.sshd.enable = true;
}