summaryrefslogtreecommitdiff
path: root/users/seth/module/programs/ssh.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-02-03 19:27:26 -0500
committerseth <[email protected]>2024-02-03 20:47:55 -0500
commitfcc60b84e5e3cc44986d40af63f5de488caae909 (patch)
tree45f4455c7dcbc63e59e62a9af79783e2e5509a2e /users/seth/module/programs/ssh.nix
parentde003fa28e56b81a33e831099987cd94d2f53b39 (diff)
make everything a module
Diffstat (limited to 'users/seth/module/programs/ssh.nix')
-rw-r--r--users/seth/module/programs/ssh.nix51
1 files changed, 51 insertions, 0 deletions
diff --git a/users/seth/module/programs/ssh.nix b/users/seth/module/programs/ssh.nix
new file mode 100644
index 0000000..48f167c
--- /dev/null
+++ b/users/seth/module/programs/ssh.nix
@@ -0,0 +1,51 @@
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}: let
+ cfg = config.seth.programs.ssh;
+in {
+ options.seth.programs.ssh = {
+ enable = lib.mkEnableOption "SSH configuration" // {default = true;};
+ };
+
+ config = lib.mkIf cfg.enable {
+ programs.ssh = {
+ enable = true;
+ package = pkgs.openssh;
+
+ matchBlocks = let
+ sshDir = "${config.home.homeDirectory}/.ssh";
+ in {
+ # git forges
+ "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";
+ };
+ };
+
+ services.ssh-agent.enable = pkgs.stdenv.isLinux;
+ };
+}