diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2018-09-26 17:44:13 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2018-09-26 17:44:13 +0200 |
commit | 1031e91cbd366f3d4c3d5f25b08721fa4c0d0c10 (patch) | |
tree | baa882ab27d490935b85b0a3f04a204fa61da56a /hel | |
parent | 74e3edf811b06d37b5e9782bf2c19cccbaf67d5c (diff) | |
download | nixos-1031e91cbd366f3d4c3d5f25b08721fa4c0d0c10.tar nixos-1031e91cbd366f3d4c3d5f25b08721fa4c0d0c10.tar.gz nixos-1031e91cbd366f3d4c3d5f25b08721fa4c0d0c10.tar.bz2 nixos-1031e91cbd366f3d4c3d5f25b08721fa4c0d0c10.tar.xz nixos-1031e91cbd366f3d4c3d5f25b08721fa4c0d0c10.zip |
...
Diffstat (limited to 'hel')
-rw-r--r-- | hel/boot.nix | 5 | ||||
-rw-r--r-- | hel/hw.nix | 7 |
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; |
@@ -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 | } |