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

15 lines
258 B
Nix

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