mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
29 lines
503 B
Nix
29 lines
503 B
Nix
_: let
|
|
hostConfig = {tree, ...}: {
|
|
imports = with tree.darwin; [
|
|
orbstack
|
|
packages
|
|
];
|
|
|
|
home-manager.users.kat.imports =
|
|
(with tree.home.profiles; [
|
|
graphical.gpg
|
|
graphical.vscode
|
|
graphical.wezterm
|
|
])
|
|
++ (with tree.home.profiles; [
|
|
devops
|
|
])
|
|
++ (with tree.home.environments; [
|
|
darwin
|
|
]);
|
|
|
|
system.stateVersion = 4;
|
|
};
|
|
in {
|
|
arch = "aarch64";
|
|
type = "macOS";
|
|
modules = [
|
|
hostConfig
|
|
];
|
|
}
|