🔧 configure ssh and vpn

This commit is contained in:
Your Name 2025-06-10 17:10:42 +02:00
commit 7f74e2b244
2 changed files with 7 additions and 0 deletions
homes/ingolf-wagner

View file

@ -2,6 +2,7 @@
{
imports = [
../palo
./ssh.nix
./keymapper.nix
./taskwarrior.nix
];
@ -17,6 +18,8 @@
pkgs.silver-searcher
pkgs.arandr
pkgs.xterm # just in case
pkgs.openconnect
pkgs.ferdium
];
home.shellAliases = {

View file

@ -0,0 +1,4 @@
{ lib, ... }:
{
programs.ssh.matchBlocks."*".identityFile = lib.mkForce "~/.ssh/ingolf.wagner@jobrad.org";
}