summaryrefslogtreecommitdiff
path: root/users/seth/programs/ssh.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-07-25 03:22:42 -0400
committerseth <[email protected]>2023-07-25 03:24:20 -0400
commitcc20c415eebe51a31fe79282d2c8f1854abbf4ae (patch)
treefcd521e0f56e50b72dfd7d3bdc88b004cb6ba180 /users/seth/programs/ssh.nix
parent3a2aeadbebc35906ab68d188a7536022e22db187 (diff)
users/seth: separate gpg/ssh config from git
Diffstat (limited to 'users/seth/programs/ssh.nix')
-rw-r--r--users/seth/programs/ssh.nix46
1 files changed, 46 insertions, 0 deletions
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";
+ };
+ };
+}