chore: initial commit

This commit is contained in:
2026-07-05 15:40:35 +02:00
commit aee4d0aa15
12 changed files with 940 additions and 0 deletions
+47
View File
@@ -0,0 +1,47 @@
# Flake-based NixOS + home-manager config (public half)
Usage, quick-start, and how to consume the modules are in `README.md` — read it first.
This is the **public** half of a two-repo split: **reusable modules** + an `example`
template host. The matching **private** repo holds the real inventory
(`nixosConfigurations.<host>`, `hosts/<host>/`, SSH/Syncthing topology) and imports this
one as a flake input. Deploy happens from the private repo, not here.
**Editing invariant — pick the layer before adding config:**
- generic/reusable → a module here (`modules/*.nix`, `nixosModules.*` / `homeModules.*`);
make machine/user specifics **options with defaults**, never hard-code personal values.
- machine list / hostnames / topology (SSH hosts, Syncthing peers, IPs) → the private
inventory repo, never here. The `example` host carries only placeholders.
- secrets (keys, tokens, passwords) → **neither** repo; runtime files or a secrets manager
decrypting to a path. See the SSH section.
## Maxim: keep $HOME clean (XDG)
Standing principle for every addition: minimise dotfiles/dirs in `$HOME`. Route a tool's
config → `~/.config`, state/history → `~/.local/state`, cache → `~/.cache`, data →
`~/.local/share`, normally by setting env vars in `home.sessionVariables`
(use `config.xdg.{config,state,cache,data}Home`). Prefer this to letting a tool litter `~`.
Cannot be relocated, leave alone: `~/.zshenv` (bootstraps `ZDOTDIR`), `~/.nix-profile`
and `~/.nix-defexpr` (nix), `~/.icons` (cursor theme — spec mandates `~/.icons`),
`~/.pki/nssdb` (NSS cert/key DB — path hardcoded in NSS, ignores XDG; created by any
Chromium/NSS/CEF app, e.g. grayjay's embedded webview).
## Desktop environment
Wayland. Compositor **Hyprland**, bar **Waybar**, terminal **foot** — all configured
declaratively in `modules/home.nix` (`wayland.windowManager.hyprland`, `programs.waybar`,
`programs.foot`). Font is JetBrainsMono Nerd Font; Waybar/foot use Nerd Font glyphs
(nf-md set) for icons, so new glyphs should come from that set for visual consistency.
Hyprland uses the **master** layout and a **German** keyboard (`kb_layout = "de"`).
Look deliberately minimal: animations, blur, rounding, and shadows are all turned
**off** on purpose — don't reintroduce them when adding desktop tweaks.
## Rust dev environments
Before setting up Rust for a project, read the `devShells` comment in `flake.nix`.
Short version: default is the shared `rust` devShell (`use flake ~/.nixos-config#rust`
via direnv); give a project its own `flake.nix` only when it needs its own pinned Rust
version or native C deps. The comment explains the tradeoff.