nixfiles/systems/fullhome.nix

17 lines
234 B
Nix

_: let
hostConfig = {tree, ...}: {
imports = with tree.home.profiles; [
common
devops
graphical
neovim
shell
];
};
in {
arch = "x86_64";
type = "Home";
modules = [
hostConfig
];
}