[shared] Added fzf, ssh hm config, reencrypted secrets

This commit is contained in:
2025-04-21 11:54:22 +02:00
parent 15d5121f0e
commit 33351682c0
5 changed files with 59 additions and 13 deletions

View File

@ -0,0 +1,22 @@
# ~/.ssh/config
{ systemConfig, ... }:
{
programs.ssh = {
enable = true;
matchBlocks =
let
block = hostname: {
port = 22;
user = systemConfig.username;
hostname = "${hostname}.dns.martials.no";
};
in
{
desktop = block "desktop";
homelab = block "admin"; # TODO rename to homelab
pi4 = block "pi4";
thinkpad = block "thinkpad";
};
};
}