chore: flatten module structure
Some checks failed
ci/woodpecker/push/ci Pipeline failed

This commit is contained in:
Daniel Lundin 2024-11-16 15:39:00 +01:00
parent e585707491
commit 5ecbea5105
Signed by: dln
SSH key fingerprint: SHA256:dQy1Xj3UiqJYpKR5ggQ2bxgz4jCH8IF+k3AB8o0kmdI
7 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@
nixosModules.image.imports = [
./modules
./modules/profiles/base.nix
./modules/image/disk
./modules/image
];
packages.${system} = {

View file

@ -22,7 +22,7 @@
# Kernel
boot.kernel.sysctl = {
"net.core.default_qdisc" = "fq";
"net.core.default_qdisc" = "fq"; # FIXME: manage these with networkd?
"net.ipv4.tcp_congestion_control" = "bbr";
};