This commit is contained in:
ktkk 2025-10-17 19:58:11 +00:00
parent b89303566a
commit f9132abd53
12 changed files with 332 additions and 30 deletions

View file

@ -0,0 +1,32 @@
{
pkgs,
outputs,
inputs,
lib,
...
}:
{
imports = [
./hardware-configuration.nix
../shared
../../modules/forgejo
../../modules/nginx
../../modules/grafana
];
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
time.timeZone = "Europe/Brussels";
networking = {
hostName = "homelab";
firewall.allowedTCPPorts = [
80
443
];
};
}