summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2018-09-26 17:44:13 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2018-09-26 17:44:13 +0200
commit1031e91cbd366f3d4c3d5f25b08721fa4c0d0c10 (patch)
treebaa882ab27d490935b85b0a3f04a204fa61da56a
parent74e3edf811b06d37b5e9782bf2c19cccbaf67d5c (diff)
downloadnixos-1031e91cbd366f3d4c3d5f25b08721fa4c0d0c10.tar
nixos-1031e91cbd366f3d4c3d5f25b08721fa4c0d0c10.tar.gz
nixos-1031e91cbd366f3d4c3d5f25b08721fa4c0d0c10.tar.bz2
nixos-1031e91cbd366f3d4c3d5f25b08721fa4c0d0c10.tar.xz
nixos-1031e91cbd366f3d4c3d5f25b08721fa4c0d0c10.zip
...
-rw-r--r--hel.nix7
-rw-r--r--hel/boot.nix5
-rw-r--r--hel/hw.nix7
3 files changed, 12 insertions, 7 deletions
diff --git a/hel.nix b/hel.nix
index a0067783..ac29a69d 100644
--- a/hel.nix
+++ b/hel.nix
@@ -331,6 +331,13 @@
331 }; 331 };
332 }; 332 };
333 333
334 hardware.trackpoint = {
335 enable = true;
336 emulateWheel = true;
337 sensitivity = 255;
338 speed = 160;
339 };
340
334 systemd.services."gpsd".wants = [ "chronyd.service" ]; 341 systemd.services."gpsd".wants = [ "chronyd.service" ];
335 systemd.services."gpsd".after = [ "chronyd.service" ]; 342 systemd.services."gpsd".after = [ "chronyd.service" ];
336 343
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}