Use a local ssh config for odowork.

This commit is contained in:
Tom Alexander 2025-11-24 19:30:49 -05:00
parent 39997dc4d4
commit c542dcdee9
Signed by: talexander
GPG Key ID: 36C99E8B3C39D85F
2 changed files with 20 additions and 1 deletions

View File

@ -13,6 +13,7 @@
./screen_brightness.nix
./wifi.nix
./framework_module.nix
./ssh_config.nix
];
config = {
@ -120,7 +121,10 @@
me.wireguard.activated = [
"wgh"
];
me.wireguard.deactivated = [ "wgf" ];
me.wireguard.deactivated = [
"wgf"
"colo"
];
me.yubikey.enable = true;
me.zfs.enable = true;
me.zrepl.enable = true;

View File

@ -0,0 +1,15 @@
{
lib,
...
}:
{
imports = [ ];
config = {
me.install.user.talexander.file = {
".ssh/config" = {
source = lib.mkForce "/persist/manual/ssh/talexander/config";
};
};
};
}