home-manager now manages ssh client profiles
This commit is contained in:
parent
f46de5b1d7
commit
16c4e77524
2 changed files with 15 additions and 1 deletions
|
|
@ -100,6 +100,20 @@
|
|||
];
|
||||
};
|
||||
|
||||
# set ssh profiles
|
||||
# (all we need is hyrule, everything else is through wishlist)
|
||||
ssh = {
|
||||
enable = true;
|
||||
matchBlocks = {
|
||||
hyrule = {
|
||||
hostname = "imbored.dev";
|
||||
user = "ae";
|
||||
port = 22;
|
||||
identityFile = "/home/me/.ssh/id_hyrule";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# I want to use fish as my login shell but it always
|
||||
# goes terrible cause it isn't POSIX compliant, so
|
||||
# instead Bash is my login and it will just exec fish
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue