From 31d797a8a1b860aa2a6e8a4e780aae1fcb706d34 Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Tue, 4 Mar 2025 00:47:11 +0530 Subject: [PATCH] feat: Added homebrew and install some apps --- darwin/shiro/configuration.nix | 9 ++------- darwin/shiro/homebrew.nix | 16 ++++++++++++++++ 2 files changed, 18 insertions(+), 7 deletions(-) create mode 100644 darwin/shiro/homebrew.nix 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" + ]; + }; +}