nix/nixos/oracle/configuration.nix
iofq a2cb2e03a4
Some checks are pending
/ nvim-bundle (push) Blocked by required conditions
/ check (push) Successful in 3m45s
add CI images to repo
2026-03-01 02:24:00 -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";
}