63 lines
1.4 KiB
Nix
63 lines
1.4 KiB
Nix
{ lib, pkgs, ... }: {
|
|
imports = [
|
|
./utils/bento.nix
|
|
./utils/modules/sops.nix
|
|
./utils/modules/lego/lego.nix
|
|
|
|
|
|
./modules/mysql.nix
|
|
./utils/modules/nginx.nix
|
|
./modules/authelia
|
|
./modules/collabora.nix
|
|
./modules/nextcloud
|
|
|
|
./utils/modules/autoupgrade.nix
|
|
./utils/modules/borgbackup.nix
|
|
|
|
./hardware-configuration.nix
|
|
|
|
./modules/web/stack.nix
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
vim
|
|
davfs2
|
|
screen
|
|
ucommon
|
|
php
|
|
php83
|
|
];
|
|
|
|
time.timeZone = "Europe/Vienna";
|
|
|
|
services.logind.extraConfig = "RuntimeDirectorySize=2G";
|
|
|
|
sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
|
|
sops.defaultSopsFile = ./secrets.yaml;
|
|
|
|
nix.gc = {
|
|
automatic = true;
|
|
options = "--delete-older-than 60d";
|
|
};
|
|
|
|
boot.tmp.cleanOnBoot = true;
|
|
zramSwap.enable = true;
|
|
networking.hostName = "web";
|
|
networking.domain = "social-grow.tech";
|
|
services.openssh.enable = true;
|
|
users.users.root.openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHC9YODKEKu5bOC61qkpPd8QeZxbNPCQKgfh8xUFMdV0" # dominik
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIRQuPqH5fdX3KEw7DXzWEdO3AlUn1oSmtJtHB71ICoH Generated By Termius"
|
|
];
|
|
|
|
# backups
|
|
borgbackup.repo = "u428777-sub3@u428777.your-storagebox.de:borg";
|
|
|
|
networking.firewall = {
|
|
enable = true;
|
|
allowedTCPPorts = [ 22 80 443 ];
|
|
};
|
|
|
|
system.stateVersion = "22.05";
|
|
}
|