Scope in-file comments to the current file state

In-file comments should describe only what the file currently is, not task
numbers, external tooling, or past/future states.

- hosts/neogaia: drop the "replaced by disko" / "arrive later" framing;
  describe the filesystems and hardware profile as the placeholder values
  they are.
- lib: drop the "no null-placeholder traversal hack" comparison to a prior
  implementation.
- system: drop "no impure environment lookup" from the user.name description
  and the sops/post-boot roadmap from the user comment.
This commit is contained in:
2026-07-18 11:13:47 -04:00
parent e53d2d2194
commit 4bffa8dede
4 changed files with 10 additions and 18 deletions

View File

@@ -1,10 +1,8 @@
{ ... }:
# neogaia — Dell XPS 13 9380 laptop.
#
# Minimum viable Host: enough to evaluate and build the system toplevel. The
# real disk layout (disko: LUKS + btrfs + zram), the CachyOS kernel, networking,
# and the terminal Modules arrive in later tasks; the placeholders below are
# replaced by disko in task 0002.
# The filesystems and hardware profile below are placeholder values, not the
# machine's real encrypted layout.
{
imports = [ ./hardware-configuration.nix ];
@@ -13,8 +11,7 @@
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
# Placeholder filesystems so the toplevel builds; superseded by the disko
# layout in task 0002.
# Placeholder label-based filesystems.
fileSystems."/" = {
device = "/dev/disk/by-label/nixos";
fsType = "ext4";