dregil: Enable gpg-agent with ssh via home-manager

This commit is contained in:
Alexander Kobjolke 2023-05-12 20:27:03 +02:00
parent df600c917c
commit 1e81cd287c

View file

@ -63,6 +63,12 @@ in
# do not show home-manager notifications # do not show home-manager notifications
news.display = "silent"; news.display = "silent";
services.gpg-agent = {
enable = true;
enableSshSupport = true;
sshKeys = [ "9027AB16B9A7C20BD29F30F55CBA054430BF014C" ];
};
} }
]; ];
}; };