nix/nixos/oracle/configuration.nix
iofq 7880077613
Some checks failed
/ check (push) Successful in 3m32s
/ nvim-bundle (push) Has been cancelled
add CI images to repo
2026-02-28 20:04:18 -06:00

24 lines
417 B
Nix

{ host, ... }:
{
imports = [
./hardware-configuration.nix
./forgejo.nix
];
boot.kernel.sysctl = {
"net.ipv4.ip_forward" = 1;
"net.ipv6.conf.all.forwarding" = 1;
};
machine.net.openssh.ports = [22 2022];
networking = {
hostId = "00238132";
firewall = {
allowedTCPPorts = [
22
2022
80
443
];
};
};
system.stateVersion = "23.11";
}