nixos/hosts/pro-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

30 lines
468 B
Nix

{ config, nixgl, pkgs, ... }:
{
imports = [
../../modules/home
];
nixGL = {
packages = nixgl.packages;
installScripts = ["mesa"];
};
modules.home = {
apps = {
kitty = {
enable = true;
package = config.lib.nixGL.wrap pkgs.kitty;
};
};
shell = {
zsh.enable = true;
atuin.enable = true;
direnv.enable = true;
lazygit.enable = true;
};
editors.neovim.enable = true;
};
}