71 lines
1.4 KiB
Nix
71 lines
1.4 KiB
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./zfs.nix
|
|
./users/darkkirb.nix
|
|
./users/root.nix
|
|
./nix.nix
|
|
./sops.nix
|
|
./wireguard.nix
|
|
./home.nix
|
|
./services/restic.nix
|
|
./specialization.nix
|
|
./services/promtail.nix
|
|
./env.nix
|
|
./services/monitoring.nix
|
|
];
|
|
services.openssh.enable = true;
|
|
environment.systemPackages = with pkgs; [
|
|
git
|
|
kitty.terminfo
|
|
];
|
|
networking.firewall.allowedTCPPorts = [22];
|
|
networking.firewall.allowedUDPPortRanges = [
|
|
{
|
|
from = 60000;
|
|
to = 61000;
|
|
}
|
|
];
|
|
|
|
users.defaultUserShell = pkgs.zsh;
|
|
|
|
# Enable zram swap in every case
|
|
zramSwap = {
|
|
enable = true;
|
|
};
|
|
|
|
# Prometheus node exporter
|
|
services.prometheus.exporters.node = {
|
|
enable = true;
|
|
enabledCollectors = [
|
|
"interrupts"
|
|
"lnstat"
|
|
"mountstats"
|
|
"network_route"
|
|
"ntp"
|
|
"processes"
|
|
"systemd"
|
|
"tcpstat"
|
|
];
|
|
listenAddress = (import ../utils/getInternalIP.nix config).listenIP;
|
|
};
|
|
networking.firewall.interfaces."wg0".allowedTCPPorts = [config.services.prometheus.exporters.node.port];
|
|
|
|
environment.pathsToLink = ["/share/zsh"];
|
|
|
|
console.keyMap = "neo";
|
|
|
|
security.sudo.extraConfig = ''
|
|
Defaults env_keep += "TMUX"
|
|
'';
|
|
|
|
programs.gnupg.agent = {
|
|
enable = true;
|
|
enableSSHSupport = true;
|
|
};
|
|
users.mutableUsers = false;
|
|
boot.kernelParams = ["nohibernate"];
|
|
}
|