diff options
| author | Fuwn <[email protected]> | 2024-08-31 17:06:30 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-08-31 17:06:30 -0700 |
| commit | 1884048a0ab148721a7e9f74c3c419863b47f0a7 (patch) | |
| tree | ec4eb4ad05a600b0bc9d42d3116151b34f8fc945 /modules/boot | |
| parent | f (diff) | |
| download | nixos-config-1884048a0ab148721a7e9f74c3c419863b47f0a7.tar.xz nixos-config-1884048a0ab148721a7e9f74c3c419863b47f0a7.zip | |
hi
Diffstat (limited to 'modules/boot')
| -rw-r--r-- | modules/boot/default.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/boot/default.nix b/modules/boot/default.nix index 05fafc6..dc062fe 100644 --- a/modules/boot/default.nix +++ b/modules/boot/default.nix @@ -21,6 +21,11 @@ kernelModules = [ "v4l2loopback" ]; extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback ]; + kernel.sysctl = { + "net.ipv6.conf.eth0.disable_ipv6" = true; + "net.ipv6.conf.tun0.disable_ipv6" = true; + }; + kernelParams = [ "nvidia-drm.fbdev=1" "nvidia.NVreg_PreserveVideoMemoryAllocations=1" |