mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
15 lines
257 B
Nix
15 lines
257 B
Nix
_: let
|
|
hostConfig = {tree, ...}: {
|
|
imports = with tree.home.profiles; [
|
|
common
|
|
shell
|
|
];
|
|
};
|
|
in {
|
|
arch = "x86_64";
|
|
type = "Home";
|
|
ci.enable = true; # TODO: fix arcnmx/nixexprs overlay issue???
|
|
modules = [
|
|
hostConfig
|
|
];
|
|
}
|