diff --git a/darwin/shiro/configuration.nix b/darwin/shiro/configuration.nix index 2dec974d..c0415b43 100644 --- a/darwin/shiro/configuration.nix +++ b/darwin/shiro/configuration.nix @@ -4,16 +4,11 @@ device, ... }: { - imports = [./services]; + imports = [./services ./homebrew.nix]; - homebrew = { - enable = true; - brews = [ - "docker" - ]; - }; # environment.systemPackages = with pkgs; [nix neovim]; nix = { + enable = false; settings = { experimental-features = "nix-command flakes auto-allocate-uids"; max-jobs = 8; diff --git a/darwin/shiro/homebrew.nix b/darwin/shiro/homebrew.nix new file mode 100644 index 00000000..19cb442b --- /dev/null +++ b/darwin/shiro/homebrew.nix @@ -0,0 +1,16 @@ +{...}: { + homebrew = { + enable = true; + brews = [ + "docker-compose" + ]; + casks = [ + "docker" + "librewolf" + "raycast" + "kunkun" # Soon + "lunar" + "virtual-desktop-streamer" + ]; + }; +}