2023-01-07 19:30:15 +00:00
|
|
|
# atlanticaweb.fr 37.187.103.8/24
|
2022-05-26 10:55:06 +00:00
|
|
|
{ pkgs, ... }: {
|
|
|
|
imports = [
|
|
|
|
./hardware-configuration.nix
|
|
|
|
./webserver.nix
|
|
|
|
./firewall-web.nix
|
|
|
|
../modules/gitea.nix
|
|
|
|
../modules/prometheus-node.nix
|
|
|
|
../modules/common.nix
|
|
|
|
../modules/users.nix
|
2022-10-19 19:07:02 +00:00
|
|
|
../docker/whoogle.nix
|
|
|
|
../docker/appsmith.nix
|
2022-05-26 10:55:06 +00:00
|
|
|
];
|
|
|
|
|
2022-07-02 18:35:10 +00:00
|
|
|
system.stateVersion = "21.11";
|
2022-07-02 18:20:21 +00:00
|
|
|
|
2022-05-26 10:55:06 +00:00
|
|
|
boot.cleanTmpDir = true;
|
|
|
|
zramSwap.enable = false;
|
|
|
|
networking.hostName = "web";
|
|
|
|
services.openssh = {
|
|
|
|
enable = true;
|
|
|
|
permitRootLogin = "no";
|
|
|
|
passwordAuthentication = false;
|
2022-07-02 18:20:21 +00:00
|
|
|
kbdInteractiveAuthentication = false;
|
2022-05-26 10:55:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|