{ 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. inputs.nomarchy.url = "github:YOUR-USER/nomarchy"; # <- the distro repo 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) }; }