All checks were successful
Check flake syntax / flake-check (push) Successful in 4m9s
26 lines
473 B
Nix
26 lines
473 B
Nix
{ config, lib, pkgs, inputs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
networking = {
|
|
hostName = mkDefault "infradocs";
|
|
useDHCP = false;
|
|
};
|
|
|
|
imports = [
|
|
../durruti/documentation.nix
|
|
../modules/malobeo_user.nix
|
|
../modules/sshd.nix
|
|
];
|
|
|
|
networking.firewall.allowedTCPPorts = [ 9002 ];
|
|
|
|
malobeo.metrics.logNginx = lib.mkForce true;
|
|
|
|
users.users.promtail.extraGroups = [ "nginx" "systemd-journal" ];
|
|
|
|
system.stateVersion = "22.11"; # Did you read the comment?
|
|
}
|
|
|