From 5d23ff3e33b264e5718cd6c588d7445932e6462f Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Tue, 26 Dec 2023 22:28:28 -0600 Subject: [PATCH] added protonmail, removed virtial-manager --- workstation/configuration.org | 5 +++-- workstation/fstab.nix | 8 +++++++- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/workstation/configuration.org b/workstation/configuration.org index 36e4673..4b6a966 100644 --- a/workstation/configuration.org +++ b/workstation/configuration.org @@ -536,6 +536,7 @@ Stuff that I use to interact with the web, web browsers, chats, download managers, etc. #+begin_src nix +protonmail-bridge # bridge for protonmail firefox # web browser that allows to disable spyware tor-browser-bundle-bin # dark web, so dark! chromium # web browser with spyware included @@ -918,7 +919,7 @@ environment = { ''; }; systemPackages = with pkgs; [ - virt-manager + # virt-manager docker-compose wget gwe @@ -1152,7 +1153,7 @@ On this section, you can also add virtual machines settings. # programs.virt-manager.enable = true; programs.dconf.enable = true; # virt-manager requires dconf to remember settings virtualisation = { - libvirtd.enable = true; + libvirtd.enable = false; docker = { enable = true; storageDriver = "btrfs"; diff --git a/workstation/fstab.nix b/workstation/fstab.nix index c1f4e69..0c62ec6 100644 --- a/workstation/fstab.nix +++ b/workstation/fstab.nix @@ -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;