nixos/hosts/perso-laptop/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

28 lines
394 B
Nix

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