diff options
-rw-r--r-- | sif.nix | 2 | ||||
-rw-r--r-- | sif/boot.nix | 3 |
2 files changed, 3 insertions, 2 deletions
@@ -44,8 +44,6 @@ | |||
44 | i18n.defaultLocale = "en_US.UTF-8"; | 44 | i18n.defaultLocale = "en_US.UTF-8"; |
45 | console.keyMap = "dvp"; | 45 | console.keyMap = "dvp"; |
46 | 46 | ||
47 | boot.kernelPackages = pkgs.linuxPackages_latest; | ||
48 | |||
49 | time.timeZone = "Europe/Berlin"; | 47 | time.timeZone = "Europe/Berlin"; |
50 | 48 | ||
51 | environment.systemPackages = with pkgs; [ | 49 | environment.systemPackages = with pkgs; [ |
diff --git a/sif/boot.nix b/sif/boot.nix index bfb712a6..dbe081c7 100644 --- a/sif/boot.nix +++ b/sif/boot.nix | |||
@@ -20,6 +20,9 @@ | |||
20 | 20 | ||
21 | plymouth.enable = true; | 21 | plymouth.enable = true; |
22 | 22 | ||
23 | kernelPackages = pkgs.linuxPackages_latest; | ||
23 | kernelParams = [ "i915.fastboot=1" "intel_pstate=no_hwp" "quiet" ]; | 24 | kernelParams = [ "i915.fastboot=1" "intel_pstate=no_hwp" "quiet" ]; |
25 | |||
26 | tmpOnTmpfs = true; | ||
24 | }; | 27 | }; |
25 | } | 28 | } |