Extract a gnupg mixin

This commit is contained in:
Oliver Davies 2025-04-06 00:45:11 +01:00
parent 2f56994696
commit 4bbca3493e
7 changed files with 8 additions and 12 deletions

View file

@ -13,8 +13,6 @@
{
imports = [
inputs.home-manager.nixosModules.home-manager
./programs.nix
];
nix = {
@ -32,6 +30,8 @@
};
};
programs.zsh.enable = true;
users.defaultUserShell = pkgs.zsh;
environment.systemPackages = with pkgs; [

View file

@ -7,10 +7,5 @@
enableSSHSupport = true;
pinentryPackage = pkgs.pinentry-qt;
};
zsh = {
enable = true;
histSize = 5000;
};
};
}