All checks were successful
Check / eval (push) Successful in 3m4s
Make the downstream template the single source of truth for machine flakes: nomarchy-install copies flake/system/home/theme-state and patch-template.py only fills hostname, user, keyboard, detected hardware, snapper, resume, and password. Install and flake-init users now share the same commented opt-ins and starter home.packages. Also: BACKLOG boreal-as-default proposal; installer audit notes; HARDWARE.md from prior work if uncommitted.
22 lines
853 B
Nix
22 lines
853 B
Nix
{
|
|
description = "My Nomarchy machine";
|
|
|
|
# The only input. nixpkgs, home-manager etc. come pinned through it —
|
|
# tested together upstream. This file is written once (by you or the
|
|
# installer) and never hand-edited afterwards; your machine lives in
|
|
# system.nix and home.nix. v1 is the release branch.
|
|
# Installer copies this template and patches username + hardwareProfile.
|
|
inputs.nomarchy.url = "git+https://git.bemagri.xyz/bernardo/nomarchy.git?ref=v1";
|
|
|
|
outputs = { nomarchy, ... }:
|
|
nomarchy.lib.mkFlake {
|
|
src = ./.;
|
|
username = "me"; # <- your login name
|
|
|
|
# Optional: a nixos-hardware module name for your machine, e.g.
|
|
# hardwareProfile = "framework-13-7040-amd";
|
|
# Names: https://github.com/NixOS/nixos-hardware
|
|
# (the future installer fills this in automatically from DMI data)
|
|
};
|
|
}
|