added protonmail, removed virtial-manager

This commit is contained in:
2023-12-26 22:28:28 -06:00
parent fc38e70b92
commit 5d23ff3e33
2 changed files with 10 additions and 3 deletions

View File

@@ -1,7 +1,13 @@
{ config, pkgs, modulesPath, ... }: {
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
boot = {
kernel.sysctl = { "vm.swappiness" = 80; };
kernel.sysctl = {
"vm.swappiness" = 80;
"net.ipv6.conf.all.disable_ipv6" = 1;
"net.ipv6.conf.lo.disable_ipv6" = 1;
"net.ipv6.conf.default.disable_ipv6" = 1;
"net.ipv4.tcp_mtu_probing" = 1;
};
loader = {
efi = {
canTouchEfiVariables = true;