{ 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. # Development tip is `main`. Release consumers pin `?ref=v1` once that # pointer is current (installer overwrites this URL from the ISO build). # Installer copies this template and patches username + hardwareProfile # + the nomarchy input URL. inputs.nomarchy.url = "git+https://git.bemagri.xyz/bernardo/nomarchy.git?ref=main"; 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) }; }