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