nixfiles/systems/home-base.nix

15 lines
254 B
Nix

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