[ssh] Set default git users

This commit is contained in:
Tibo De Peuter 2023-10-13 10:22:38 +02:00
parent 5155078c37
commit 2456478f30
2 changed files with 10 additions and 9 deletions

View file

@ -62,11 +62,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1696697597, "lastModified": 1696983906,
"narHash": "sha256-q26Qv4DQ+h6IeozF2o1secyQG0jt2VUT3V0K58jr3pg=", "narHash": "sha256-L7GyeErguS7Pg4h8nK0wGlcUTbfUMDu+HMf1UcyP72k=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "5a237aecb57296f67276ac9ab296a41c23981f56", "rev": "bd1cde45c77891214131cbbea5b1203e485a9d51",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -125,11 +125,11 @@
"nixpkgs-stable": "nixpkgs-stable" "nixpkgs-stable": "nixpkgs-stable"
}, },
"locked": { "locked": {
"lastModified": 1696890802, "lastModified": 1697064251,
"narHash": "sha256-q0cbDNjTnZ1ojoPdy4liEHWXokhQSNULnSKgURp4v2g=", "narHash": "sha256-xxp2sB+4vqB6S6zC/L5J8LlRKgVbgIZOcYl9/TDrEzI=",
"owner": "Mic92", "owner": "Mic92",
"repo": "sops-nix", "repo": "sops-nix",
"rev": "6b32358c22d2718a5407d39a8236c7bd9608f447", "rev": "f995ea159252a53b25fa99824f2891e3b479d511",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -28,24 +28,25 @@
hostname = "git.depeuter.dev"; hostname = "git.depeuter.dev";
identitiesOnly = true; identitiesOnly = true;
identityFile = "/run/secrets/Hugo/Gitea/ssh"; identityFile = "/run/secrets/Hugo/Gitea/ssh";
user = "tdpeuter"; user = "git";
}; };
"github.com" = { "github.com" = {
hostname = "github.com"; hostname = "github.com";
identitiesOnly = true; identitiesOnly = true;
identityFile = "/run/secrets/GitHub/ssh"; identityFile = "/run/secrets/GitHub/ssh";
user = "tdpeuter"; user = "git";
}; };
"github.ugent.be" = { "github.ugent.be" = {
hostname = "github.ugent.be"; hostname = "github.ugent.be";
identitiesOnly = true; identitiesOnly = true;
identityFile = "/run/secrets/UGent/GitHub/ssh"; identityFile = "/run/secrets/UGent/GitHub/ssh";
user = "tdpeuter"; user = "git";
}; };
"subgit.ugent.be" = { "subgit.ugent.be" = {
hostname = "subgit.ugent.be"; hostname = "subgit.ugent.be";
identitiesOnly = true; identitiesOnly = true;
identityFile = "/run/secrets/UGent/SubGit/ssh"; identityFile = "/run/secrets/UGent/SubGit/ssh";
user = "git";
}; };
}; };
}; };