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): net.ipv6.ip_forward -> net.ipv6.conf.all.forwarding

Also no SSH commit signatures for now while debugging why I am
stuck with the "Couldn't sign message (signer): agent refused operation?"
errors bts.

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

+2 -2
+2 -2
shared/meta.nix
··· 1 1 # One Nix file to import all the base configs without cluttering the per-host 2 - # imports, alongside a minimal base packages. 2 + # imports, alongside a minimal base packages and some tweaks at sysctls. 3 3 { 4 4 pkgs, 5 5 config, ··· 60 60 # sysctl stuff 61 61 boot.kernel.sysctl = { 62 62 "net.ipv4.ip_forward" = 1; 63 - "net.ipv6.ip_forward" = 1; 63 + "net.ipv6.conf.all.forwarding" = 1; 64 64 "vm.swappiness" = 60; 65 65 }; 66 66 }