.. highlight:: sh System Installation ====================== .. contents:: Table of Contents :local: Additional configuration ~~~~~~~~~~~~~~~~~~~~~~~~~ As NixOS configuration is declarative, post-installation tasks, such as user accounts and package selection, can all be done by specifing them in configuration. See `NixOS manual `__ for details. For timezone, hostname, networking, keyboard layout, etc, see ``/mnt/etc/nixos/configuration.nix``. Set root password ----------------- This optional step is an example of declaratively configuring the system. #. Generate password hash:: INST_ROOT_PASSWD=$(mkpasswd -m SHA-512 -s) #. Declare `initialHashedPassword `__ for root user:: tee -a /mnt/etc/nixos/${INST_CONFIG_FILE} <`__. Complete the installation by executing:: nixos-enter --root /mnt -- nixos-rebuild boot Finish installation ~~~~~~~~~~~~~~~~~~~~ #. Take a snapshot of the clean installation for future use:: zfs snapshot -r rpool_$INST_UUID/$INST_ID@install zfs snapshot -r bpool_$INST_UUID/$INST_ID@install #. Unmount EFI system partition:: umount /mnt/boot/efis/* #. Export pools:: zpool export bpool_$INST_UUID zpool export rpool_$INST_UUID #. Reboot:: reboot Upgrade NixOS ~~~~~~~~~~~~~ Routine updates within the same major version ============================================= Updates within the same major version, such as from [21.11].001 to [21.11].100, can be done with one of the following commands:: # take immediate effect nixos-rebuild --upgrade switch # update upon reboot nixos-rebuild --upgrade boot Upgrade to a newer major version ================================ Upgrading to a newer major version involves switching software distribution channel. #. View existing channels, run as root:: nix-channel --list #nixos https://nixos.org/channels/nixos-21.11 #this is the major version released around November 2021 #. View available channels:: w3m https://hydra.nixos.org/project/nixos #. Switch to a newer channel (22.05):: nix-channel --add https://nixos.org/channels/nixos-22.05 nixos #. In ``/etc/nixos/configuration.nix``:: system.stateVersion = "22.05"; If using Home Manager, in ``~/.config/nixpkgs/home.nix``:: home.stateVersion = "22.05"; #. Then follow the procedures for updating witin minor versions. Immutable root file system ~~~~~~~~~~~~~~~~~~~~~~~~~~ This section is optional. Often, programs generate mutable files in paths such as ``/etc`` and ``/var/lib``. The generated files can be considered a part of the system state. This generated state is not declaratively managed by NixOS and can not be reproduced from NixOS configuration. To ensure that the system state is fully managed by NixOS and reproducible, we need to periodically purge the system state and let NixOS regenerate root file system from scratch. Also see: `Erase your darlings: immutable infrastructure for mutable systems `__. Save mutable data to alternative path ------------------------------------- Before enabling purging on root dataset, we need to back up essential mutable data first, such as host SSH key and network connections. Below are some tips. - Some programs support specifying another location for mutable data, such as Wireguard:: networking.wireguard.interfaces.wg0.privateKeyFile = "/state/etc/wireguard/wg0"; - For programs without a configurable data path, `environment.etc `__ may be used:: environment.etc = { "ssh/ssh_host_rsa_key".source = "/state/etc/ssh/ssh_host_rsa_key"; } - systemd’s tmpfiles.d rules are also an option:: systemd.tmpfiles.rules = [ "L /var/lib/bluetooth - - - - /state/var/lib/bluetooth" ]; - Bind mount:: for i in {/etc/nixos,/etc/cryptkey.d}; do mkdir -p /state/$i /$i mount -o bind /state/$i /$i done nixos-generate-config --show-hardware-config Boot from empty root file system -------------------------------- After backing up mutable data, you can try switching to an empty dataset as root file system. #. Check current root file system:: ROOT_FS=$(df --output=source /|tail -n1) # rpool/ROOT/default #. Set empty file system as root:: sed -i "s,${ROOT_FS},${ROOT_FS%/*}/empty,g" /etc/nixos/hardware-configuration-zfs.nix #. Apply changes and reboot:: nixos-rebuild boot reboot #. If everything went fine, add the output of the following command to configuration:: ROOT_FS=$(df --output=source /|tail -n1) cat <