summaryrefslogtreecommitdiff
path: root/users/seth/programs/ssh.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/seth/programs/ssh.nix')
-rw-r--r--users/seth/programs/ssh.nix69
1 files changed, 0 insertions, 69 deletions
diff --git a/users/seth/programs/ssh.nix b/users/seth/programs/ssh.nix
deleted file mode 100644
index 9cef7ff..0000000
--- a/users/seth/programs/ssh.nix
+++ /dev/null
@@ -1,69 +0,0 @@
-{
- config,
- lib,
- pkgs,
- ...
-}:
-let
- cfg = config.seth.programs.ssh;
-in
-{
- options.seth.programs.ssh = {
- enable = lib.mkEnableOption "SSH configuration" // {
- default = config.seth.enable;
- defaultText = lib.literalExpression "config.seth.enable";
- };
- };
-
- 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";
- };
-
- "github.com" = {
- identityFile = "${sshDir}/github";
- user = "git";
- };
-
- # linux packaging
- "aur.archlinux.org" = {
- identityFile = "${sshDir}/aur";
- user = "aur";
- };
-
- "pagure.io" = {
- identityFile = "${sshDir}/copr";
- user = "git";
- };
-
- # macstadium m1
- "mini.scrumplex.net" = {
- identityFile = "${sshDir}/macstadium";
- user = "bob-the-builder";
- };
-
- # router
- "192.168.1.1" = {
- identityFile = "${sshDir}/openwrt";
- user = "root";
- };
-
- # servers
- "atlas".user = "atlas";
- };
- };
-
- services.ssh-agent.enable = pkgs.stdenv.isLinux;
- };
-}