my nixos/home-manager configuration
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

nixos(desktop): add mptcp ?

youn b6af2c6c 0fd73e52

+5
+5
nixos/desktop/default.nix
··· 50 50 systemd.packages = with pkgs; [ lact ]; 51 51 systemd.services.lact.wantedBy = [ "multi-user.target" ]; 52 52 53 + # Enable Multipath TCP 54 + services.mptcpd.enable = true; 55 + boot.kernel.sysctl = { 56 + "net.mptcp.enabled" = "1"; 57 + }; 53 58 }