mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-26 15:04:59 +08:00
vixen: configure ssh
This commit is contained in:
parent
6bcc2a69f1
commit
dbd91fe53c
1 changed files with 19 additions and 0 deletions
|
|
@ -27,6 +27,25 @@ in
|
|||
# '';
|
||||
};
|
||||
|
||||
programs.ssh = {
|
||||
enable = true;
|
||||
enableDefaultConfig = false;
|
||||
matchBlocks = {
|
||||
"*" = {
|
||||
extraOptions = {
|
||||
# Configure SSH to use 1Password agent
|
||||
IdentityAgent = "~/.1password/agent.sock";
|
||||
};
|
||||
};
|
||||
"pureintent" = {
|
||||
forwardAgent = true;
|
||||
};
|
||||
"sincereintent" = {
|
||||
forwardAgent = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
home.username = "srid";
|
||||
home.stateVersion = "25.05";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue