nixos/hosts/pro-home/home.nix
Florian RICHER 4e98a50b3d
All checks were successful
check / check (push) Successful in 36s
pro-home: Add kitty and support of nixgl
2025-06-26 11:48:01 +02:00

27 lines
404 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;
};
};
}