removed ssh setting from nix_builder.nix

This commit is contained in:
2025-12-21 11:37:40 -05:00
parent c56082b516
commit b0d5147296

View File

@@ -69,15 +69,6 @@ in
"nix-command" "nix-command"
]; ];
}; };
programs.ssh.extraConfig = ''
Host jeeves
Port 629
User github-runners
HostName jeeves
IdentityFile ${vars.secrets}/services/github-runners/id_ed25519_github-runners
StrictHostKeyChecking no
UserKnownHostsFile /dev/null
'';
nixpkgs = { nixpkgs = {
overlays = builtins.attrValues outputs.overlays; overlays = builtins.attrValues outputs.overlays;
config.allowUnfree = true; config.allowUnfree = true;
@@ -94,7 +85,6 @@ in
extraPackages = with pkgs; [ extraPackages = with pkgs; [
nixfmt-rfc-style nixfmt-rfc-style
nixos-rebuild nixos-rebuild
openssh
treefmt treefmt
my_python my_python
]; ];