create openssh module
This commit is contained in:
parent
8209d5b82c
commit
f99fb01f03
63
modules/openssh.nix
Normal file
63
modules/openssh.nix
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
{ lib, ... }:
|
||||||
|
{
|
||||||
|
services.openssh = {
|
||||||
|
enable = lib.mkDefault true;
|
||||||
|
fixPermissions = true;
|
||||||
|
extraConfig = "StreamLocalBindUnlink yes";
|
||||||
|
|
||||||
|
hostKeys = [
|
||||||
|
{
|
||||||
|
bits = 4096;
|
||||||
|
path = "/etc/ssh/ssh_host_rsa_key";
|
||||||
|
type = "rsa";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
path = "/etc/ssh/ssh_host_ed25519_key";
|
||||||
|
type = "ed25519";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
path = "/etc/ssh/ssh_host_ecdsa_key";
|
||||||
|
type = "ecdsa";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
settings = {
|
||||||
|
AllowAgentForwarding = "no";
|
||||||
|
AllowTcpForwarding = "no";
|
||||||
|
ChallengeResponseAuthentication = "no";
|
||||||
|
ClientAliveCountMax = lib.mkDefault 2;
|
||||||
|
Compression = "NO";
|
||||||
|
IgnoreRhosts = "yes";
|
||||||
|
LogLevel = lib.mkDefault "VERBOSE";
|
||||||
|
MaxAuthTries = 3;
|
||||||
|
MaxSessions = lib.mkDefault 2;
|
||||||
|
PasswordAuthentication = false;
|
||||||
|
PermitEmptyPasswords = "no";
|
||||||
|
PermitRootLogin = "no";
|
||||||
|
TcpKeepAlive = "no";
|
||||||
|
X11Forwarding = lib.mkDefault false;
|
||||||
|
KexAlgorithms = [
|
||||||
|
"curve25519-sha256@libssh.org"
|
||||||
|
"diffie-hellman-group-exchange-sha256"
|
||||||
|
];
|
||||||
|
|
||||||
|
Ciphers = [
|
||||||
|
"chacha20-poly1305@openssh.com"
|
||||||
|
"aes256-gcm@openssh.com"
|
||||||
|
"aes128-gcm@openssh.com"
|
||||||
|
"aes256-ctr"
|
||||||
|
"aes192-ctr"
|
||||||
|
"aes128-ctr"
|
||||||
|
];
|
||||||
|
|
||||||
|
Macs = [
|
||||||
|
"hmac-sha2-512-etm@openssh.com"
|
||||||
|
"hmac-sha2-256-etm@openssh.com"
|
||||||
|
"umac-128-etm@openssh.com"
|
||||||
|
"hmac-sha2-512"
|
||||||
|
"hmac-sha2-256"
|
||||||
|
"umac-128@openssh.com"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
@ -27,67 +27,6 @@
|
|||||||
recommendedDefaults = true;
|
recommendedDefaults = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
openssh = {
|
|
||||||
enable = true;
|
|
||||||
fixPermissions = true;
|
|
||||||
extraConfig = "StreamLocalBindUnlink yes";
|
|
||||||
|
|
||||||
hostKeys = [
|
|
||||||
{
|
|
||||||
bits = 4096;
|
|
||||||
path = "/etc/ssh/ssh_host_rsa_key";
|
|
||||||
type = "rsa";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
path = "/etc/ssh/ssh_host_ed25519_key";
|
|
||||||
type = "ed25519";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
path = "/etc/ssh/ssh_host_ecdsa_key";
|
|
||||||
type = "ecdsa";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
settings = {
|
|
||||||
AllowAgentForwarding = "no";
|
|
||||||
AllowTcpForwarding = "no";
|
|
||||||
ChallengeResponseAuthentication = "no";
|
|
||||||
ClientAliveCountMax = lib.mkDefault 2;
|
|
||||||
Compression = "NO";
|
|
||||||
IgnoreRhosts = "yes";
|
|
||||||
LogLevel = lib.mkDefault "VERBOSE";
|
|
||||||
MaxAuthTries = 3;
|
|
||||||
MaxSessions = lib.mkDefault 2;
|
|
||||||
PasswordAuthentication = false;
|
|
||||||
PermitEmptyPasswords = "no";
|
|
||||||
PermitRootLogin = "no";
|
|
||||||
TcpKeepAlive = "no";
|
|
||||||
X11Forwarding = lib.mkDefault false;
|
|
||||||
KexAlgorithms = [
|
|
||||||
"curve25519-sha256@libssh.org"
|
|
||||||
"diffie-hellman-group-exchange-sha256"
|
|
||||||
];
|
|
||||||
|
|
||||||
Ciphers = [
|
|
||||||
"chacha20-poly1305@openssh.com"
|
|
||||||
"aes256-gcm@openssh.com"
|
|
||||||
"aes128-gcm@openssh.com"
|
|
||||||
"aes256-ctr"
|
|
||||||
"aes192-ctr"
|
|
||||||
"aes128-ctr"
|
|
||||||
];
|
|
||||||
|
|
||||||
Macs = [
|
|
||||||
"hmac-sha2-512-etm@openssh.com"
|
|
||||||
"hmac-sha2-256-etm@openssh.com"
|
|
||||||
"umac-128-etm@openssh.com"
|
|
||||||
"hmac-sha2-512"
|
|
||||||
"hmac-sha2-256"
|
|
||||||
"umac-128@openssh.com"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
autopull = {
|
autopull = {
|
||||||
enable = true;
|
enable = true;
|
||||||
ssh-key = "/root/.ssh/id_ed25519_ghdeploy";
|
ssh-key = "/root/.ssh/id_ed25519_ghdeploy";
|
||||||
|
@ -29,6 +29,7 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.openssh.enable = false;
|
||||||
services.autopull = {
|
services.autopull = {
|
||||||
enable = false;
|
enable = false;
|
||||||
ssh-key = "/root/.ssh/id_ed25519_ghdeploy";
|
ssh-key = "/root/.ssh/id_ed25519_ghdeploy";
|
||||||
|
@ -32,8 +32,6 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
openssh.enable = true;
|
|
||||||
|
|
||||||
printing.enable = true;
|
printing.enable = true;
|
||||||
|
|
||||||
pipewire = {
|
pipewire = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user