nixfiles/systems/fullhome.nix

18 lines
300 B
Nix

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