From dd4a60b304c8e355faaff75866cb48d7b582500d Mon Sep 17 00:00:00 2001 From: Trolli Schmittlauch Date: Wed, 9 Jan 2019 12:16:33 +0100 Subject: [PATCH] switch to latest linux kernel this required an (intermediate) switch to fuse-exfat --- nixos/configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index fae6236..624caf3 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -32,6 +32,9 @@ in { boot.tmpOnTmpfs = true; fileSystems."/tmp".fsType = "tmpfs"; + # try newer kernels + boot.kernelPackages = pkgs.linuxPackages_latest; + services.fstrim.enable = true; services.btrfs.autoScrub = { enable = true; @@ -39,7 +42,7 @@ in { }; # exfat support - boot.extraModulePackages = [ config.boot.kernelPackages.exfat-nofuse ]; + #boot.extraModulePackages = [ config.boot.kernelPackages.exfat-nofuse ]; zramSwap = { enable = true;