33 lines
724 B
Nix
33 lines
724 B
Nix
{ pkgs, ... }:
|
|
|
|
let
|
|
data = import ../../../data.nix;
|
|
in
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./networking.secret.nix # generated at runtime by nixos-infect
|
|
|
|
../../modules/nix.nix
|
|
../../shared/common.nix
|
|
../../shared/fail2ban
|
|
../../shared/garbage-collector.nix
|
|
../../shared/docker-swarm.nix
|
|
../../shared/acme.nix
|
|
|
|
./services/mailserver.nix
|
|
./services/gitea.nix
|
|
./services/traefik.nix
|
|
./services/woodpecker
|
|
];
|
|
|
|
boot.kernelPackages = pkgs.linuxPackages_6_1;
|
|
boot.tmp.cleanOnBoot = true;
|
|
|
|
zramSwap.enable = true;
|
|
|
|
networking.hostName = "magenta";
|
|
|
|
services.openssh.enable = true;
|
|
users.users.root.openssh.authorizedKeys.keys = data.publicKeys.users.jan;
|
|
}
|