diff --git a/configuration/base.nix b/configuration/base.nix index fddbe1a..3cc6504 100644 --- a/configuration/base.nix +++ b/configuration/base.nix @@ -17,6 +17,11 @@ boot.loader.efi.canTouchEfiVariables = true; boot.kernelPackages = pkgs.linuxPackages_zen; + swapDevices = [{ + device = "/var/lib/swapfile"; + size = 16 * 1024; + }]; + hardware.bluetooth.enable = true; # networking.hostName = "nixos"; # Define your hostname. @@ -95,8 +100,8 @@ # Open ports in the firewall. # 443 Helldivers crashes internet otherwise - networking.firewall.allowedTCPPorts = [ 443 ]; - networking.firewall.allowedUDPPorts = [ 443 ]; + # networking.firewall.allowedTCPPorts = [ 443 ]; + # networking.firewall.allowedUDPPorts = [ 443 ]; # Or disable the firewall altogether. # networking.firewall.enable = false;