My NixOS configuration and deployment.
Go to file
2023-08-22 14:25:29 +02:00
yodaTux add TOR browser 2023-08-22 14:25:29 +02:00
.gitignore add .gitignore 2023-08-16 14:23:51 +02:00
README.md system updates 2023-08-22 14:25:18 +02:00

NixOS

  • There is controversy about flakes, rather use channels (e.g. with niv)

Build and Switch

Directly change to new config, make it default:

sudo nixos-rebuild -I nixos-config=yodaTux/configuration.nix switch

System updates

sudo nix-channel --update
# The -s param does currently not work for both, .nix and .json file.
# Workaround: https://github.com/nmattia/niv/pull/133#issuecomment-703322261
#
#niv --sources-file=yodaTux/nix/sources.json update
#
(cd yodaTux && niv update)

Then run nixos-rebuild switch, see above.

Install Home Manager with niv

niv:

Easy dependency management for Nix projects.

Nix is a very powerful tool for building code and setting up environments. niv complements it by making it easy to describe and update remote dependencies (URLs, GitHub repos, etc). It is a simple, practical alternative to Nix flakes.

https://github.com/nmattia/niv

Niv is an easy dependency management for Nix projects with package pinning.

https://github.com/mikeroyal/NixOS-Guide

Home Manager:

[Home Manager] allows declarative configuration of user specific (non-global) packages and dotfiles.

To avoid breaking users' configurations, Home Manager is released in branches corresponding to NixOS releases ( e.g. release-23.05).

Home Manager provides both the channel-based setup and the flake-based one.

https://github.com/nix-community/home-manager

Check your channel:

sudo nix-channel --list
#=> nixos https://nixos.org/channels/nixos-23.05

Use the corresponding branch:

(cd yodaTux && niv add nix-community/home-manager -n home-manager -b release-23.05)

disko and nixos-anywhere

# TODO (!)

Automount Encrypted Drive

  • Generate and add keyfile to LUKS device
  • luksOpen and mount drive, e.g. to /mnt/data1
  • Re-generate hardware configuration:
sudo nixos-generate-config --dir yodaTux

GNOME extensions

# TODO

General Notes

Nix Pills

It provides a tutorial introduction into the Nix package manager and Nixpkgs package collection, in the form of short chapters called 'pills'.

Thesis

There are two (?) theses about Nix. One is https://edolstra.github.io/pubs/phd-thesis.pdf

Search for packages

Search for options

References

Some references to websites that helped me create this repository:

TODOs