2022-10-17 15:54:48 +03:00
|
|
|
{ aspect, hosts, ... }:
|
2022-05-28 22:53:03 +03:00
|
|
|
|
|
|
|
{
|
|
|
|
imports = with aspect; [
|
|
|
|
modules.fail2ban
|
|
|
|
modules.nix-config-server
|
|
|
|
modules.sss
|
|
|
|
./soda.nix
|
|
|
|
] ++ sets.base ++ sets.networking;
|
|
|
|
|
|
|
|
boot.isContainer = true;
|
|
|
|
|
|
|
|
networking.useDHCP = false;
|
|
|
|
|
|
|
|
networking.interfaces.eth0.useDHCP = true;
|
|
|
|
|
|
|
|
networking.nameservers = [ hosts.VEGAS.interfaces.vstub.addr ];
|
|
|
|
|
|
|
|
networking.resolvconf.extraConfig = "local_nameservers='${hosts.VEGAS.interfaces.vstub.addr}'";
|
|
|
|
|
|
|
|
networking.hostName = "soda";
|
|
|
|
|
|
|
|
time.timeZone = "Europe/Helsinki";
|
|
|
|
|
|
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
|
|
|
|
|
|
services.openssh.enable = true;
|
|
|
|
|
|
|
|
system.stateVersion = "21.11";
|
|
|
|
}
|