2025-12-09 16:34:37 +01:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
security.sudo.wheelNeedsPassword = false;
|
|
|
|
|
imports =
|
|
|
|
|
[ ./hardware-configuration.nix ];
|
|
|
|
|
networking.hostName = "inuc";
|
|
|
|
|
boot.initrd.enable = true;
|
|
|
|
|
boot.loader = {
|
|
|
|
|
systemd-boot = {
|
|
|
|
|
enable = true;
|
|
|
|
|
}; # end loader.systemd-boot
|
2025-12-10 21:43:34 +01:00
|
|
|
}; # end boot
|
|
|
|
|
virtualisation = {
|
|
|
|
|
oci-containers = {
|
|
|
|
|
containers = {
|
|
|
|
|
}; # end containers
|
|
|
|
|
}; # end oci-containers
|
|
|
|
|
}; # end virtualisation
|
|
|
|
|
networking.firewall.allowedTCPPorts = [
|
|
|
|
|
53
|
|
|
|
|
80
|
|
|
|
|
443
|
|
|
|
|
];
|
|
|
|
|
networking.firewall.allowedUDPPorts = [
|
|
|
|
|
53
|
|
|
|
|
];
|
2025-12-09 16:34:37 +01:00
|
|
|
} # end file
|
|
|
|
|
|