glonal/keychain: fix ssh agent and allow inheritance
This commit is contained in:
parent
ff290281a4
commit
7fc69af332
1 changed files with 3 additions and 1 deletions
|
@ -1,9 +1,11 @@
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
|
services.ssh-agent.enable = true;
|
||||||
|
|
||||||
programs.keychain = {
|
programs.keychain = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
inheritType = "any";
|
||||||
extraFlags = [ "--quiet" "--dir ${config.xdg.configHome}/keychain" ];
|
extraFlags = [ "--quiet" "--dir ${config.xdg.configHome}/keychain" ];
|
||||||
|
|
||||||
keys = [ "id_ed25519" ];
|
keys = [ "id_ed25519" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue