Give up on gpg-agent, try ssh-agent

This commit is contained in:
Trevor Vallender 2023-08-28 14:38:58 +01:00
parent def035626d
commit e715a5f783
3 changed files with 5 additions and 8 deletions

View File

@ -31,7 +31,7 @@
{
programs.hyprland = {
enable = true;
nvidiaPatches = true;
enableNvidiaPatches = true;
xwayland = {
enable = true;
};

View File

@ -55,6 +55,10 @@
nixpkgs.config.allowUnfree = true;
programs.ssh {
startAgent = true;
};
services.openssh = {
enable = true;
ports = [ 2222 2223 ];

View File

@ -84,12 +84,5 @@
services = {
syncthing.enable = true;
gpg-agent = {
enable = true;
enableBashIntegration = true;
enableSshSupport = true;
pinentryFlavor = "curses";
verbose = true;
};
};
}