feat: add ssh config
This commit is contained in:
parent
3ee67b029b
commit
b28193ac98
2 changed files with 14 additions and 1 deletions
|
@ -1,2 +1,2 @@
|
|||
# This file contains default settings used across different systems
|
||||
{ }
|
||||
{ imports = [ ./ssh ]; }
|
||||
|
|
13
home/ssh/default.nix
Normal file
13
home/ssh/default.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
programs.ssh = {
|
||||
enable = true;
|
||||
addKeysToAgent = "confirm";
|
||||
matchBlocks = {
|
||||
"deck" = {
|
||||
hostname = "steamdeck";
|
||||
user = "deck";
|
||||
port = 22;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue