NixOS + home-manager configs, mirrored from GitLab SaaS. gitlab.com/andreijiroh-dev/nixops-config
nix-flake nixos home-manager nixpkgs nix-flakes
1
fork

Configure Feed

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

chore(meta): add sysctl stuff, mainly for tailscale subnet routing to work in containers

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>

+7
+7
shared/meta.nix
··· 56 56 programs.nix-ld.dev = { 57 57 enable = true; 58 58 }; 59 + 60 + # sysctl stuff 61 + boot.kernel.sysctl = { 62 + "net.ipv4.ip_forward" = 1; 63 + "net.ipv6.ip_forward" = 1; 64 + "vm.swappiness" = 60; 65 + }; 59 66 }