added protonmail, removed virtial-manager
This commit is contained in:
parent
fc38e70b92
commit
5d23ff3e33
@ -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";
|
||||
|
||||
@ -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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user