Converted gpg from nixos module to home module
This commit is contained in:
parent
726ace8ade
commit
92ec5a59fd
6 changed files with 46 additions and 48 deletions
|
@ -13,10 +13,6 @@ in {
|
|||
|
||||
config = mkIf cfg.enable {
|
||||
aa = {
|
||||
tools = {
|
||||
gpg.enable = true;
|
||||
};
|
||||
|
||||
apps = {
|
||||
neovim.enable = true;
|
||||
};
|
||||
|
|
|
@ -24,6 +24,7 @@ in {
|
|||
du-dust
|
||||
fd
|
||||
file
|
||||
gnupg
|
||||
htop
|
||||
jq
|
||||
killall
|
||||
|
|
|
@ -1,43 +0,0 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
cfg = config.aa.tools.gpg;
|
||||
in {
|
||||
options.aa.tools.gpg = with types; {
|
||||
enable = mkEnableOption "gpg";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
environment.systemPackages = [pkgs.gnupg ];
|
||||
|
||||
aa.home.extraOptions = {
|
||||
programs.gpg = {
|
||||
enable = true;
|
||||
scdaemonSettings = {
|
||||
# Fix conflicts with config in common/yubikey.nix
|
||||
disable-ccid = true;
|
||||
};
|
||||
};
|
||||
|
||||
programs.ssh.matchBlocks = {
|
||||
# Fix for pinentry showing up in wrong terminal
|
||||
"*".match = "host * exec \"gpg-connect-agent UPDATESTARTUPTTY /bye\"";
|
||||
};
|
||||
|
||||
services.gpg-agent = {
|
||||
enable = true;
|
||||
pinentryPackage = pkgs.pinentry-curses;
|
||||
enableZshIntegration = true; # TODO: Only set if using zsh
|
||||
enableSshSupport = true;
|
||||
sshKeys = [
|
||||
# run `gpg-connect-agent 'keyinfo --list' /bye` to get these values for existing keys
|
||||
"E274D5078327CB6C8C83CFF102CC12A2D493C77F"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue