switches back to lazygit

This commit is contained in:
Dennis 2025-12-10 13:26:42 +01:00
parent 231b043a17
commit bd4c36008e
4 changed files with 43 additions and 35 deletions

View file

@ -19,6 +19,7 @@
../modules/fish ../modules/fish
../modules/wezterm ../modules/wezterm
../modules/nvim ../modules/nvim
../modules/lazygit
]; ];
programs.home-manager.enable = true; programs.home-manager.enable = true;

View file

@ -20,6 +20,7 @@
../modules/nvim ../modules/nvim
../modules/ghostty ../modules/ghostty
../modules/zellij ../modules/zellij
../modules/lazygit
]; ];
programs.home-manager.enable = true; programs.home-manager.enable = true;

View file

@ -22,20 +22,26 @@
}; };
nix.settings.trusted-users = [ "dennis" ]; nix.settings.trusted-users = [ "dennis" ];
nixpkgs.overlays = [
inputs.zellij-switch.overlays.default
];
# System Packages # System Packages
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
circumflex circumflex
gh gh
zellij
zellij-switch
# rsync # rsync
]; ];
masApps = { homebrew.masApps = {
Bitwarden = 1352778147; Bitwarden = 1352778147;
Wireguard = 1451685025; Wireguard = 1451685025;
# XCode = 497799835; # XCode = 497799835;
}; };
brews = [ homebrew.brews = [
"watchman" "watchman"
"pnpm" "pnpm"
"pkg-config" "pkg-config"
@ -52,7 +58,7 @@
"mysql@8.0" "mysql@8.0"
]; ];
casks = [ homebrew.casks = [
"arc" "arc"
"microsoft-teams" "microsoft-teams"
"wezterm" "wezterm"
@ -64,7 +70,6 @@
"docker-desktop" "docker-desktop"
"google-chrome" "google-chrome"
]; ];
};
# Shells # Shells
environment.shells = [ pkgs.fish ]; environment.shells = [ pkgs.fish ];

View file

@ -47,5 +47,6 @@
imagemagick imagemagick
sqlite sqlite
fortune fortune
lazygit
]; ];
} }