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