mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
fix: further koishi fixup
This commit is contained in:
parent
6723c8020e
commit
323c26e58d
2 changed files with 7 additions and 5 deletions
|
|
@ -1,4 +1,6 @@
|
|||
{ pkgs, ... }: {
|
||||
{ lib, pkgs, ... }: let
|
||||
inherit (lib.modules) mkForce;
|
||||
in {
|
||||
systemd.services.NetworkManager-wait-online = {
|
||||
serviceConfig.ExecStart = [ "" "${pkgs.networkmanager}/bin/nm-online -q" ];
|
||||
};
|
||||
|
|
@ -35,12 +37,12 @@
|
|||
networking = {
|
||||
firewall = {
|
||||
allowedUDPPorts = [ 5353 ];
|
||||
allowedUDPPortRanges = [ { from = "32768"; to="60999" } ];
|
||||
allowedUDPPortRanges = [ { from = 32768; to=60999; } ];
|
||||
};
|
||||
networkmanager = {
|
||||
enable = true;
|
||||
connectionConfig = {
|
||||
"ipv6.ip6-privacy" = lib.mkForce 0;
|
||||
"ipv6.ip6-privacy" = mkForce 0;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue