mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-13 00:16:24 +00:00
f3fd89af54
Many thangs to the hard work and generous availability of: git@github.com:Misterio77/nix-config.git
46 lines
1.4 KiB
Nix
46 lines
1.4 KiB
Nix
{ outputs, lib, config, ... }:
|
|
|
|
let
|
|
inherit (config.networking) hostName;
|
|
hosts = outputs.nixosConfigurations;
|
|
pubKey = host: ../../${host}/ssh_host_ed25519_key.pub;
|
|
gitHost = hosts."alcyone".config.networking.hostName;
|
|
|
|
# Sops needs acess to the keys before the persist dirs are even mounted; so
|
|
# just persisting the keys won't work, we must point at /persist
|
|
hasOptinPersistence = config.environment.persistence ? "/persist";
|
|
in
|
|
{
|
|
services.openssh = {
|
|
enable = true;
|
|
settings = {
|
|
# Harden
|
|
PasswordAuthentication = false;
|
|
PermitRootLogin = "no";
|
|
# Automatically remove stale sockets
|
|
StreamLocalBindUnlink = "yes";
|
|
# Allow forwarding ports to everywhere
|
|
GatewayPorts = "clientspecified";
|
|
};
|
|
|
|
hostKeys = [{
|
|
path = "${lib.optionalString hasOptinPersistence "/persist"}/etc/ssh/ssh_host_ed25519_key";
|
|
type = "ed25519";
|
|
}];
|
|
};
|
|
|
|
programs.ssh = {
|
|
# Each hosts public key
|
|
knownHosts = builtins.mapAttrs
|
|
(name: _: {
|
|
publicKeyFile = pubKey name;
|
|
extraHostNames =
|
|
(lib.optional (name == hostName) "localhost") ++ # Alias for localhost if it's the same host
|
|
(lib.optionals (name == gitHost) [ "m7.rs" "git.m7.rs" ]); # Alias for m7.rs and git.m7.rs if it's the git host
|
|
})
|
|
hosts;
|
|
};
|
|
|
|
# Passwordless sudo when SSH'ing with keys
|
|
security.pam.enableSSHAgentAuth = true;
|
|
}
|