Installed machines and the downstream template now resolve nomarchy from git+https://git.bemagri.xyz/bernardo/nomarchy.git?ref=v1 (the lock's original node carries the ref too), so `nix flake update` follows the release branch instead of the forge's default branch. README quickstart points at the real forge. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
21 lines
778 B
Nix
21 lines
778 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.
|
|
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)
|
|
};
|
|
}
|