nixos/hosts/pro-home/home.nix
Florian RICHER 06e73b03d0
All checks were successful
check / check (push) Successful in 32s
editors.neovim: Re-enable all broken features (fixed now)
2025-06-26 12:13:15 +02:00

29 lines
439 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;
};
editors.neovim.enable = true;
};
}