nixos/hosts/pro-home/home.nix
Florian RICHER 99211c5ba0
pro-home: Add gpg-agent
On NixOS, it's already configured with common.nix but not for home only
configurations
2025-07-16 14:30:38 +02:00

38 lines
646 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 = {
atuin.enable = true;
direnv.enable = true;
git.enable = true;
lazygit.enable = true;
zsh.enable = true;
};
editors.neovim.enable = true;
};
services.gpg-agent = {
enable = true;
enableZshIntegration = true;
enableSshSupport = true;
pinentry.package = pkgs.pinentry-qt;
};
}