summaryrefslogtreecommitdiff
path: root/hel
diff options
context:
space:
mode:
Diffstat (limited to 'hel')
-rw-r--r--hel/boot.nix5
-rw-r--r--hel/hw.nix7
2 files changed, 5 insertions, 7 deletions
diff --git a/hel/boot.nix b/hel/boot.nix
index 318b860b..b7cc0429 100644
--- a/hel/boot.nix
+++ b/hel/boot.nix
@@ -7,6 +7,11 @@
7 loader = { 7 loader = {
8 systemd-boot.enable = true; 8 systemd-boot.enable = true;
9 efi.canTouchEfiVariables = true; 9 efi.canTouchEfiVariables = true;
10 timeout = null;
11 };
12
13 plymouth = {
14 enable = true;
10 }; 15 };
11 16
12 tmpOnTmpfs = true; 17 tmpOnTmpfs = true;
diff --git a/hel/hw.nix b/hel/hw.nix
index 33ff8555..d8c9df4c 100644
--- a/hel/hw.nix
+++ b/hel/hw.nix
@@ -26,12 +26,5 @@
26 26
27 nix.maxJobs = lib.mkDefault 4; 27 nix.maxJobs = lib.mkDefault 4;
28 28
29 hardware.trackpoint = {
30 enable = true;
31 emulateWheel = true;
32 sensitivity = 255;
33 speed = 160;
34 };
35
36 hardware.cpu.intel.updateMicrocode = true; 29 hardware.cpu.intel.updateMicrocode = true;
37} 30}