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 = { programs.hyprland = {
enable = true; enable = true;
nvidiaPatches = true; enableNvidiaPatches = true;
xwayland = { xwayland = {
enable = true; enable = true;
}; };

View File

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

View File

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