diff --git a/nixos/flake.lock b/nixos/flake.lock index 814881d..a4a7089 100644 --- a/nixos/flake.lock +++ b/nixos/flake.lock @@ -62,11 +62,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1696697597, - "narHash": "sha256-q26Qv4DQ+h6IeozF2o1secyQG0jt2VUT3V0K58jr3pg=", + "lastModified": 1696983906, + "narHash": "sha256-L7GyeErguS7Pg4h8nK0wGlcUTbfUMDu+HMf1UcyP72k=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "5a237aecb57296f67276ac9ab296a41c23981f56", + "rev": "bd1cde45c77891214131cbbea5b1203e485a9d51", "type": "github" }, "original": { @@ -125,11 +125,11 @@ "nixpkgs-stable": "nixpkgs-stable" }, "locked": { - "lastModified": 1696890802, - "narHash": "sha256-q0cbDNjTnZ1ojoPdy4liEHWXokhQSNULnSKgURp4v2g=", + "lastModified": 1697064251, + "narHash": "sha256-xxp2sB+4vqB6S6zC/L5J8LlRKgVbgIZOcYl9/TDrEzI=", "owner": "Mic92", "repo": "sops-nix", - "rev": "6b32358c22d2718a5407d39a8236c7bd9608f447", + "rev": "f995ea159252a53b25fa99824f2891e3b479d511", "type": "github" }, "original": { diff --git a/nixos/modules/utils/ssh/default.nix b/nixos/modules/utils/ssh/default.nix index 445fbc8..bc0f463 100644 --- a/nixos/modules/utils/ssh/default.nix +++ b/nixos/modules/utils/ssh/default.nix @@ -28,24 +28,25 @@ hostname = "git.depeuter.dev"; identitiesOnly = true; identityFile = "/run/secrets/Hugo/Gitea/ssh"; - user = "tdpeuter"; + user = "git"; }; "github.com" = { hostname = "github.com"; identitiesOnly = true; identityFile = "/run/secrets/GitHub/ssh"; - user = "tdpeuter"; + user = "git"; }; "github.ugent.be" = { hostname = "github.ugent.be"; identitiesOnly = true; identityFile = "/run/secrets/UGent/GitHub/ssh"; - user = "tdpeuter"; + user = "git"; }; "subgit.ugent.be" = { hostname = "subgit.ugent.be"; identitiesOnly = true; identityFile = "/run/secrets/UGent/SubGit/ssh"; + user = "git"; }; }; };