Move common host configuration to a mixin

This commit is contained in:
Oliver Davies 2025-04-05 23:49:28 +01:00
parent 8a4222cd88
commit dd8c556963
9 changed files with 6 additions and 8 deletions

View file

@ -0,0 +1,16 @@
{ pkgs, ... }:
{
programs = {
gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryPackage = pkgs.pinentry-qt;
};
zsh = {
enable = true;
histSize = 5000;
};
};
}