From cc20c415eebe51a31fe79282d2c8f1854abbf4ae Mon Sep 17 00:00:00 2001 From: seth Date: Tue, 25 Jul 2023 03:22:42 -0400 Subject: users/seth: separate gpg/ssh config from git --- users/seth/programs/ssh.nix | 46 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 users/seth/programs/ssh.nix (limited to 'users/seth/programs/ssh.nix') diff --git a/users/seth/programs/ssh.nix b/users/seth/programs/ssh.nix new file mode 100644 index 0000000..055f51c --- /dev/null +++ b/users/seth/programs/ssh.nix @@ -0,0 +1,46 @@ +{ + config, + pkgs, + ... +}: { + programs.ssh = { + enable = true; + package = pkgs.openssh; + + matchBlocks = let + sshDir = "${config.home.homeDirectory}/.ssh"; + in { + # git forges + "github.com" = { + identityFile = "${sshDir}/github"; + user = "git"; + }; + + "codeberg.org" = { + identityFile = "${sshDir}/codeberg"; + user = "git"; + }; + + # linux packaging + "aur.archlinux.org" = { + identityFile = "${sshDir}/aur"; + user = "aur"; + }; + + "pagure.io" = { + identityFile = "${sshDir}/copr"; + user = "git"; + }; + + # router + "192.168.1.1" = { + identityFile = "${sshDir}/openwrt"; + user = "root"; + }; + + # servers + "atlas".user = "atlas"; + "p-body".user = "p-body"; + }; + }; +} -- cgit v1.2.3