diff --git a/systems/sumireko.nix b/systems/sumireko.nix deleted file mode 100644 index 9291155a..00000000 --- a/systems/sumireko.nix +++ /dev/null @@ -1,29 +0,0 @@ -_: 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 - ]; -}