16 lines
301 B
Nix
16 lines
301 B
Nix
{pkgs, ...}: {
|
|
i18n.supportedLocales = [
|
|
"eo/UTF-8"
|
|
"en_GB.UTF-8/UTF-8"
|
|
"en_US.UTF-8/UTF-8"
|
|
];
|
|
virtualisation = {
|
|
podman = {
|
|
enable = true;
|
|
};
|
|
};
|
|
environment.systemPackages = with pkgs; [
|
|
warpinator
|
|
];
|
|
networking.firewall.allowedTCPPorts = [42000 42001];
|
|
}
|