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.
|
managers, etc.
|
||||||
|
|
||||||
#+begin_src nix
|
#+begin_src nix
|
||||||
|
protonmail-bridge # bridge for protonmail
|
||||||
firefox # web browser that allows to disable spyware
|
firefox # web browser that allows to disable spyware
|
||||||
tor-browser-bundle-bin # dark web, so dark!
|
tor-browser-bundle-bin # dark web, so dark!
|
||||||
chromium # web browser with spyware included
|
chromium # web browser with spyware included
|
||||||
@ -918,7 +919,7 @@ environment = {
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
systemPackages = with pkgs; [
|
systemPackages = with pkgs; [
|
||||||
virt-manager
|
# virt-manager
|
||||||
docker-compose
|
docker-compose
|
||||||
wget
|
wget
|
||||||
gwe
|
gwe
|
||||||
@ -1152,7 +1153,7 @@ On this section, you can also add virtual machines settings.
|
|||||||
# programs.virt-manager.enable = true;
|
# programs.virt-manager.enable = true;
|
||||||
programs.dconf.enable = true; # virt-manager requires dconf to remember settings
|
programs.dconf.enable = true; # virt-manager requires dconf to remember settings
|
||||||
virtualisation = {
|
virtualisation = {
|
||||||
libvirtd.enable = true;
|
libvirtd.enable = false;
|
||||||
docker = {
|
docker = {
|
||||||
enable = true;
|
enable = true;
|
||||||
storageDriver = "btrfs";
|
storageDriver = "btrfs";
|
||||||
|
|||||||
@ -1,7 +1,13 @@
|
|||||||
{ config, pkgs, modulesPath, ... }: {
|
{ config, pkgs, modulesPath, ... }: {
|
||||||
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
||||||
boot = {
|
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 = {
|
loader = {
|
||||||
efi = {
|
efi = {
|
||||||
canTouchEfiVariables = true;
|
canTouchEfiVariables = true;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user