modules: more fmting
This commit is contained in:
parent
034bc87e37
commit
74c6055414
4 changed files with 55 additions and 51 deletions
|
@ -43,14 +43,14 @@
|
|||
|
||||
boot.kernelModules = ["tcp_bbr"];
|
||||
|
||||
services.openssh.settings.LogLevel = "VERBOSE";
|
||||
|
||||
security.acme = {
|
||||
acceptTerms = true;
|
||||
defaults.email = "github@notohh.dev";
|
||||
};
|
||||
|
||||
services.fail2ban = {
|
||||
services = {
|
||||
openssh.settings.LogLevel = "VERBOSE";
|
||||
fail2ban = {
|
||||
enable = true;
|
||||
bantime = "1h";
|
||||
maxretry = 1;
|
||||
|
@ -71,4 +71,5 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -13,8 +13,6 @@
|
|||
tailscale.enable = true;
|
||||
};
|
||||
|
||||
time.timeZone = "America/New_York";
|
||||
|
||||
i18n = {
|
||||
defaultLocale = "en_US.UTF-8";
|
||||
extraLocaleSettings = {
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
_: {
|
||||
services.chrony = {
|
||||
time.timeZone = "America/New_York";
|
||||
|
||||
services = {
|
||||
chrony = {
|
||||
enable = true;
|
||||
servers = [
|
||||
# 0.us.pool.ntp.org
|
||||
|
@ -9,8 +12,7 @@ _: {
|
|||
"192.92.6.30"
|
||||
];
|
||||
};
|
||||
|
||||
services.timesyncd = {
|
||||
timesyncd = {
|
||||
enable = true;
|
||||
servers = [
|
||||
# 0.us.pool.ntp.org
|
||||
|
@ -20,4 +22,5 @@ _: {
|
|||
"192.92.6.30"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
_: {
|
||||
virtualisation.oci-containers.backend = "docker";
|
||||
virtualisation.docker = {
|
||||
virtualisation = {
|
||||
oci-containers.backend = "docker";
|
||||
docker = {
|
||||
enable = true;
|
||||
enableOnBoot = true;
|
||||
autoPrune = {
|
||||
|
@ -14,4 +15,5 @@ _: {
|
|||
"/run/docker.sock"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue