nixfiles/systems/fullhome.nix
2024-07-13 17:47:03 -07:00

25 lines
338 B
Nix

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