nixos/hosts/perso-home/home.nix
Florian RICHER be239649d4
All checks were successful
check / check (push) Successful in 36s
Add lazygit configuration from my old dotfiles
2025-06-27 11:43:56 +02:00

21 lines
284 B
Nix

{ ... }:
{
imports = [
../../modules/home
];
modules.home = {
apps = {
kitty.enable = true;
};
shell = {
zsh.enable = true;
atuin.enable = true;
direnv.enable = true;
git.enable = true;
lazygit.enable = true;
};
};
}