nixos/*nix*: Update module impl docs and link related modules

Something extra for the readers.

Changed files
+36 -1
nixos
+7
nixos/modules/config/flakes.nix
···
+
/*
+
Manages the flake registry.
+
+
See also
+
- ./nix.nix
+
- ./nix-channel.nix
+
*/
{ config, lib, ... }:
let
inherit (lib)
+8
nixos/modules/config/nix-channel.nix
···
+
/*
+
Manages the things that are needed for a traditional nix-channel based
+
configuration to work.
+
+
See also
+
- ./nix.nix
+
- ./flakes.nix
+
*/
{ config, lib, ... }:
let
inherit (lib)
+7
nixos/modules/config/nix-remote-build.nix
···
+
/*
+
Manages the remote build configuration, /etc/nix/machines
+
+
See also
+
- ./nix.nix
+
- nixos/modules/services/system/nix-daemon.nix
+
*/
{ config, lib, ... }:
let
+7 -1
nixos/modules/config/nix.nix
···
/*
-
Manages /etc/nix.conf, build machines and any nix-specific global config files.
+
Manages /etc/nix.conf.
+
+
See also
+
- ./nix-channel.nix
+
- ./flakes.nix
+
- ./nix-remote-build.nix
+
- nixos/modules/services/system/nix-daemon.nix
*/
{ config, lib, pkgs, ... }:
+7
nixos/modules/services/system/nix-daemon.nix
···
+
/*
+
Declares what makes the nix-daemon work on systemd.
+
+
See also
+
- nixos/modules/config/nix.nix: the nix.conf
+
- nixos/modules/config/nix-remote-build.nix: the nix.conf
+
*/
{ config, lib, pkgs, ... }:
with lib;