From bd4c36008e27ccc8cc1800d37ae6fc926ce1baf8 Mon Sep 17 00:00:00 2001 From: Dennis Date: Wed, 10 Dec 2025 13:26:42 +0100 Subject: [PATCH] switches back to lazygit --- home/darwin-work.nix | 1 + home/darwin.nix | 1 + hosts/dnsc-work/default.nix | 75 ++++++++++++++++++++----------------- modules/base/default.nix | 1 + 4 files changed, 43 insertions(+), 35 deletions(-) diff --git a/home/darwin-work.nix b/home/darwin-work.nix index 99db990..c18fc94 100644 --- a/home/darwin-work.nix +++ b/home/darwin-work.nix @@ -19,6 +19,7 @@ ../modules/fish ../modules/wezterm ../modules/nvim + ../modules/lazygit ]; programs.home-manager.enable = true; diff --git a/home/darwin.nix b/home/darwin.nix index 602d9d5..0bb2f9a 100644 --- a/home/darwin.nix +++ b/home/darwin.nix @@ -20,6 +20,7 @@ ../modules/nvim ../modules/ghostty ../modules/zellij + ../modules/lazygit ]; programs.home-manager.enable = true; diff --git a/hosts/dnsc-work/default.nix b/hosts/dnsc-work/default.nix index d90580c..0bd3044 100644 --- a/hosts/dnsc-work/default.nix +++ b/hosts/dnsc-work/default.nix @@ -22,50 +22,55 @@ }; nix.settings.trusted-users = [ "dennis" ]; + nixpkgs.overlays = [ + inputs.zellij-switch.overlays.default + ]; + # System Packages environment.systemPackages = with pkgs; [ circumflex gh + zellij + zellij-switch # rsync ]; - masApps = { - Bitwarden = 1352778147; - Wireguard = 1451685025; - # XCode = 497799835; - }; - - brews = [ - "watchman" - "pnpm" - "pkg-config" - "cairo" - "pango" - "libpng" - "jpeg" - "giflib" - "librsvg" - "pixman" - "python-setuptools" - "gmp" - "rbenv" - "mysql@8.0" - ]; - - casks = [ - "arc" - "microsoft-teams" - "wezterm" - "1password" - "1password-cli" - "android-studio" - "zulu@17" - "postman" - "docker-desktop" - "google-chrome" - ]; + homebrew.masApps = { + Bitwarden = 1352778147; + Wireguard = 1451685025; + # XCode = 497799835; }; + homebrew.brews = [ + "watchman" + "pnpm" + "pkg-config" + "cairo" + "pango" + "libpng" + "jpeg" + "giflib" + "librsvg" + "pixman" + "python-setuptools" + "gmp" + "rbenv" + "mysql@8.0" + ]; + + homebrew.casks = [ + "arc" + "microsoft-teams" + "wezterm" + "1password" + "1password-cli" + "android-studio" + "zulu@17" + "postman" + "docker-desktop" + "google-chrome" + ]; + # Shells environment.shells = [ pkgs.fish ]; diff --git a/modules/base/default.nix b/modules/base/default.nix index 2d5d927..17dde99 100644 --- a/modules/base/default.nix +++ b/modules/base/default.nix @@ -47,5 +47,6 @@ imagemagick sqlite fortune + lazygit ]; }