Fix build uncommented

This commit is contained in:
muon 2026-03-29 08:13:54 +00:00
parent ea10bd0c70
commit fc96ccde8d
6 changed files with 14 additions and 15 deletions

View file

@ -82,6 +82,14 @@ in {
};
networking.firewall.allowedTCPPorts = [80];
# Wildcard DNS: *.word.local -> 127.0.0.1 via NetworkManager's built-in dnsmasq
networking.networkmanager.dns = "dnsmasq";
# Force resolv.conf to use local dnsmasq so wildcard DNS is actually queried
networking.resolvconf.useLocalResolver = true;
environment.etc."NetworkManager/dnsmasq.d/word-local.conf".text = ''
address=/.word.local/127.0.0.1
'';
virtualisation.virtualbox.host.enable = true;
users.extraGroups.vboxusers.members = ["user-with-access-to-virtualbox"];

View file

@ -6,8 +6,6 @@
}: {
# Modules
mods.terminal.zsh.enable = true;
# mods.terminal.development.enable = true;
# mods.terminal.tools.enable = true;
# Version of first install
home.stateVersion = "24.05";