diff --git a/home/programs/ssh.nix b/home/programs/ssh.nix index 7160c23..5a11cea 100644 --- a/home/programs/ssh.nix +++ b/home/programs/ssh.nix @@ -5,40 +5,40 @@ enableDefaultConfig = false; "${if stable then "matchBlocks" else "settings"}" = { "*" = { - addKeysToAgent = "yes"; - forwardAgent = false; - compression = false; - serverAliveInterval = 0; - serverAliveCountMax = 3; - hashKnownHosts = false; - userKnownHostsFile = "~/.ssh/known_hosts"; - controlMaster = "no"; - controlPath = "~/.ssh/master-%r@%n:%p"; - controlPersist = "no"; + AddKeysToAgent = "yes"; + ForwardAgent = false; + Compression = false; + ServerAliveInterval = 0; + ServerAliveCountMax = 3; + HashKnownHosts = false; + UserKnownHostsFile = "~/.ssh/known_hosts"; + ControlMaster = "no"; + ControlPath = "~/.ssh/master-%r@%n:%p"; + ControlPersist = "no"; }; "*.pvv.ntnu.no" = { - identityFile = "~/.ssh/pvv_nixos_id_ed25519"; - user = "vegardbm"; + IdentityFile = "~/.ssh/pvv_nixos_id_ed25519"; + User = "vegardbm"; }; "pvv-git git.pvv.ntnu.no" = { - port = 2222; - user = "Gitea"; - hostname = "git.pvv.ntnu.no"; - proxyJump = "microbel"; - identityFile = "~/.ssh/pvv_gitea_id_ed25519"; + Port = 2222; + User = "Gitea"; + Hostname = "git.pvv.ntnu.no"; + ProxyJump = "microbel"; + IdentityFile = "~/.ssh/pvv_gitea_id_ed25519"; }; "github.com" = { - hostname = "github.com"; - identityFile = "~/.ssh/nixos_xeon_github_id_ed25519"; + Hostname = "github.com"; + IdentityFile = "~/.ssh/nixos_xeon_github_id_ed25519"; }; "microbel" = { - hostname = "microbel.pvv.ntnu.no"; - identityFile = "~/.ssh/pvv_gitea_id_ed25519"; - user = "vegardbm"; + Hostname = "microbel.pvv.ntnu.no"; + IdentityFile = "~/.ssh/pvv_gitea_id_ed25519"; + User = "vegardbm"; }; "pvv-login login.pvv.ntnu.no" = { - hostname = "login.pvv.ntnu.no"; - user = "vegardbm"; + Hostname = "login.pvv.ntnu.no"; + User = "vegardbm"; }; }; };