Lurkki

joined 1 year ago
[–] [email protected] 7 points 6 months ago

nvidia-settings and https://github.com/Lurkki14/tuxclocker support fan control on Wayland

[–] [email protected] 1 points 11 months ago

Ansible isn't a good solution for reproducibility, since when you remove something from the playbook and redeploy, that old state will still be active.

[–] [email protected] 2 points 1 year ago

It's system-wide (unless home-manager is involved).

They're a part of the immutable install, whose components reside in /nix/store and are symlinked to /etc.

Example from my computer:

$ realpath /etc/sddm.conf 
/nix/store/slkq2k8vc4rx4ag55zf8ssl7qd9ry49v-sddm.conf
[–] [email protected] 2 points 1 year ago (2 children)

By having the right configuration file there as part of the package's options, like:

globalProgram.doFoo = true; or something like

globalProgram.extraConfig = "barCount=4567";

[–] [email protected] 20 points 1 year ago (7 children)

In the case of NixOS at least, 'immutable' doesn't mean you can't change the system at all.

It just means you cannot change the currently installed set of packages and services (generation in NixOS parlance); all you can do is create new ones and delete old ones.

Basically every update might as well be a complete reinstall of /usr, /etc and whatnot if you compare it to traditional distros.