summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sif.nix2
-rw-r--r--sif/boot.nix3
2 files changed, 3 insertions, 2 deletions
diff --git a/sif.nix b/sif.nix
index 62d07a9c..63d63e8b 100644
--- a/sif.nix
+++ b/sif.nix
@@ -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}