about summary refs log tree commit diff
path: root/users/glittershark/system/system/machines/chupacabra.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/glittershark/system/system/machines/chupacabra.nix')
-rw-r--r--users/glittershark/system/system/machines/chupacabra.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/users/glittershark/system/system/machines/chupacabra.nix b/users/glittershark/system/system/machines/chupacabra.nix
index 38ec11e977..6793d72118 100644
--- a/users/glittershark/system/system/machines/chupacabra.nix
+++ b/users/glittershark/system/system/machines/chupacabra.nix
@@ -5,7 +5,6 @@
     ../modules/common.nix
     ../modules/reusable/battery.nix
     ../modules/tvl.nix
-    ../modules/urbint.nix
     ../modules/fcitx.nix
     ../modules/rtlsdr.nix
     ../../../../../ops/nixos/v4l2loopback.nix
@@ -42,9 +41,13 @@
       };
     };
 
-    kernel.sysctl."vm.swappiness" = 1;
     kernelModules = [ "kvm-intel" ];
     kernelParams = [ "acpi_rev_override" ];
+
+    kernel.sysctl = {
+      "kernel.perf_event_paranoid" = -1;
+      "vm.swappiness" = 1;
+    };
   };
 
   services.thermald.enable = true;