Terje Larsen
Terje Larsen
Hmm, that is true, thank you for the clarification. I guess generally it could be solved by just splitting things into modules. I just thought that it would be good...
Systemd will do the loading based on config files located in this directory `/etc/modules-load.d`. https://www.freedesktop.org/software/systemd/man/latest/modules-load.d.html For NixOS it works like this: - https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/system/boot/kernel.nix#L11 - https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/system/boot/kernel.nix#L321 - https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/system/boot/kernel.nix#L370
It is bundled with the kernel as loadable modules as I understand it and this change happened in the latest WSL kernel release (6.6). See [release notes](https://github.com/microsoft/WSL2-Linux-Kernel/releases/tag/linux-msft-wsl-6.6.36.3)
Yes, that is a bit confusing, just discovered they reverted to the older kernel again now when I was looking into it. I have tested this on WSL with the...
Seems it is still brittle when connected to VPN with multiple routes or any other case where you have multiple routes. This solves it for me: ```nix "$(ip route list...
Networking mode NAT ``` $ wslinfo --networking-mode nat $ ip route list default via 172.17.176.1 dev eth0 proto kernel 172.17.176.0/20 dev eth0 proto kernel scope link src 172.17.181.191 $ ip...
Is there any reason not to always grab the default route?
This should be quite easy to implement, but requires adding a new concept like `ReportGroup`/`CheckGroup`. Currently the report data is a flat list of `Check` objects. I might look into...
This will be addressed by my PR: #262 As long as you use `conform enforce --base-branch` or `conform enforce --revision-range`.
I tested this branch, and it seems it broke the `--dir` flag. Whatever is put in the `--dir` flag will be repeated in front of the downloaded `vendor-gomod2nix`, so inside...