marthsincemelee 311e358d88 docs(plan): correct Task 2 scope — specialArgs needed for self in imports
The original plan claimed no flake-level changes were needed because
machines/configuration.nix:21 already passes `_module.args.self = self;`.
That's only true for `config`-time evaluation; `imports` are collected
before `config` is available, so referencing `self` in `imports` causes
infinite recursion. Fix: promote `self` to `specialArgs` on each
nixosSystem call. The implementer of Task 2 caught this on first
dispatch.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-10 15:52:20 +02:00
2024-01-20 10:18:08 +01:00
2026-05-05 11:27:44 +00:00
2025-02-07 22:13:20 +01:00
2023-07-03 07:58:41 +00:00
2026-04-20 16:05:05 +02:00
2023-09-11 14:54:26 +00:00
2026-05-10 14:40:22 +02:00
2026-01-05 18:53:52 +00:00
2025-10-27 07:40:22 +00:00

Private NixOS Configuration

Felix Nixos Config

Structure

.
├── images       # custom image generations
├── machines     # machine definitions
├── modules      # own nix-options, to modularize services/hardware/...
├── overlays     # overlays
├── pkgs         # own packages, which are not available in nixpkgs
└── environments     # summarize module collections into single options

Commands

# Rebuild (switch/boot/test) 
sudo nixos-rebuild switch --flake '.#jupiter'


# Update Flake
nix flake update

# Channel list
sudo nix-channel --list
# Channel update
sudo nix-channel --update
S
Description
Private NixOS configuration
Readme 260 KiB
Languages
Nix 100%