about summary refs log tree commit diff
path: root/users/glittershark/system/system/machines/chupacabra.nix
diff options
context:
space:
mode:
authorGriffin Smith <grfn@gws.fyi>2020-11-26T01·44-0500
committerglittershark <grfn@gws.fyi>2020-11-26T01·49+0000
commit8eb7c6a5156787c8d8cdc6e03269faa2be60c7b3 (patch)
treeb07d2658ae4c91eaa1473f9b192db692ededdb37 /users/glittershark/system/system/machines/chupacabra.nix
parent3cbef0662934578d1eabd5e5b3c4b8ae9c6a4921 (diff)
chore(glittershark): Remove everything Urbint related r/1919
bye urbint!

Change-Id: I87ded275e6e5298e4e29c38775bae47a8fc07bac
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2149
Reviewed-by: glittershark <grfn@gws.fyi>
Tested-by: BuildkiteCI
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;