mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
17 lines
234 B
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
|
|
];
|
|
}
|