Give up on gpg-agent, try ssh-agent
This commit is contained in:
parent
def035626d
commit
e715a5f783
|
@ -31,7 +31,7 @@
|
||||||
{
|
{
|
||||||
programs.hyprland = {
|
programs.hyprland = {
|
||||||
enable = true;
|
enable = true;
|
||||||
nvidiaPatches = true;
|
enableNvidiaPatches = true;
|
||||||
xwayland = {
|
xwayland = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
|
@ -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 ];
|
||||||
|
|
|
@ -84,12 +84,5 @@
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
syncthing.enable = true;
|
syncthing.enable = true;
|
||||||
gpg-agent = {
|
|
||||||
enable = true;
|
|
||||||
enableBashIntegration = true;
|
|
||||||
enableSshSupport = true;
|
|
||||||
pinentryFlavor = "curses";
|
|
||||||
verbose = true;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue