nixfiles/systems/sumireko.nix
2023-11-15 18:44:30 -08:00

32 lines
510 B
Nix

_: let
hostConfig = {
tree,
pkgs,
...
}: {
imports = with tree.darwin; [
orbstack
];
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
];
}