nixfiles/systems/home-base.nix
2025-07-22 13:37:49 -07:00

14 lines
245 B
Nix

_: let
hostConfig = {tree, ...}: {
imports = with tree.home.profiles; [
common
];
};
in {
arch = "x86_64";
type = "Home";
ci.enable = true; # TODO: fix arcnmx/nixexprs overlay issue???
modules = [
hostConfig
];
}