Reformat and add reference link.

This commit is contained in:
Nolan Darilek 2025-07-21 17:10:40 -04:00
commit a679ce100b

View file

@ -1,3 +1,5 @@
# Partially inspired by https://krutonium.ca/posts/building-a-nixos-router/ and others.
{ pkgs, ... }:
{
@ -19,9 +21,9 @@
};
# Load kernel modules required for advanced QoS
kernelModules = [
"sch_cake" # CAKE qdisc for modern AQM and traffic shaping
"sch_cake" # CAKE qdisc for modern AQM and traffic shaping
"sch_fq_codel" # Fair Queue CoDel for bufferbloat mitigation
"ifb" # Intermediate Functional Block for ingress shaping
"ifb" # Intermediate Functional Block for ingress shaping
];
loader = {
efi.canTouchEfiVariables = true;