wip on init-ssh
This commit is contained in:
parent
90cd3df0c8
commit
e9a180ab77
3 changed files with 10 additions and 10 deletions
|
@ -59,8 +59,7 @@
|
||||||
configuration.init-ssh = {
|
configuration.init-ssh = {
|
||||||
enable = "enabled";
|
enable = "enabled";
|
||||||
kernelModules = [ "r8169" ];
|
kernelModules = [ "r8169" ];
|
||||||
#hostECDSAKey = <secrets/init-ssh/host_ecdsa_key>;
|
hostKey = "/etc/ssh/ssh_host_ed25519_key";
|
||||||
hostECDSAKey = <secrets/init-ssh/ssh_host_ed25519_key>;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
# nix-shell -p speedtest_cli --run speedtest
|
# nix-shell -p speedtest_cli --run speedtest
|
||||||
|
|
|
@ -41,7 +41,8 @@ with lib;
|
||||||
# space-left
|
# space-left
|
||||||
gitlabSpaceLeft = {
|
gitlabSpaceLeft = {
|
||||||
hostNames = [ "git.space-left.org" ];
|
hostNames = [ "git.space-left.org" ];
|
||||||
publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAapztj8I3xy6Ea8A1q7Mo5C6zdgsK1bguAXcKUDCRBO";
|
publicKey =
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAapztj8I3xy6Ea8A1q7Mo5C6zdgsK1bguAXcKUDCRBO";
|
||||||
};
|
};
|
||||||
# c-base
|
# c-base
|
||||||
"bnd-cbase" = {
|
"bnd-cbase" = {
|
||||||
|
|
|
@ -28,12 +28,13 @@ in {
|
||||||
++ (map (keyFile: lib.fileContents keyFile)
|
++ (map (keyFile: lib.fileContents keyFile)
|
||||||
config.users.users.root.openssh.authorizedKeys.keyFiles);
|
config.users.users.root.openssh.authorizedKeys.keyFiles);
|
||||||
};
|
};
|
||||||
hostECDSAKey = mkOption {
|
hostKey = mkOption {
|
||||||
default = null;
|
default = "/etc/ssh/ssh_host_ed25519_key";
|
||||||
type = with types; nullOr path;
|
type = with types; path;
|
||||||
description = ''
|
description = ''
|
||||||
you only need one host key
|
To generate keys, use ssh-keygen(1):
|
||||||
nix-shell -p dropbear --run "dropbearkey -t ecdsa -f ./host_ecdsa_key"
|
# ssh-keygen -t rsa -N "" -f /etc/secrets/initrd/ssh_host_rsa_key
|
||||||
|
# ssh-keygen -t ed25519 -N "" -f /etc/secrets/initrd/ssh_host_ed25519_key
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -91,10 +92,9 @@ in {
|
||||||
enable = true;
|
enable = true;
|
||||||
authorizedKeys = cfg.authorizedKeys;
|
authorizedKeys = cfg.authorizedKeys;
|
||||||
port = cfg.port;
|
port = cfg.port;
|
||||||
|
hostKeys = [ cfg.hostKey ];
|
||||||
};
|
};
|
||||||
boot.initrd.availableKernelModules = cfg.kernelModules;
|
boot.initrd.availableKernelModules = cfg.kernelModules;
|
||||||
#boot.initrd.network.ssh.hostECDSAKey = cfg.hostECDSAKey;
|
|
||||||
boot.initrd.network.ssh.hostKeys = [ cfg.hostECDSAKey ];
|
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue