about summary refs log tree commit diff
path: root/machines
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-11-28 10:50:38 +0100
committeraszlig <aszlig@redmoonstudios.org>2016-11-28 10:50:38 +0100
commitbd9f992d63fca39597296c08f3a25a27bfb7bdfc (patch)
tree410e59790290ac3a25eac99489f3163c2d086d00 /machines
parent8e4005d5f4c32a563014a88481e5df5d9248bc7c (diff)
tishtushi: Switch to common kernel config
This brings tishtushi in par with dnyarri and mmrnmhrm, because the
patch for the BFQ scheduler doesn't apply, while the one we already have
in pkgs.vuizvui.kernel.bfqsched *does* apply.

Besides it doesn't make sense to use different versions of the *same*
patch within the same repository.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'machines')
-rw-r--r--machines/aszlig/tishtushi.nix25
1 files changed, 2 insertions, 23 deletions
diff --git a/machines/aszlig/tishtushi.nix b/machines/aszlig/tishtushi.nix
index b7cf74c6..53a27eab 100644
--- a/machines/aszlig/tishtushi.nix
+++ b/machines/aszlig/tishtushi.nix
@@ -11,30 +11,9 @@ in {
   vuizvui.user.aszlig.profiles.workstation.enable = true;
   vuizvui.user.aszlig.programs.taalo-build.enable = true;
 
-  boot = rec {
-    kernelPatches = singleton {
-      name = "bfqsched";
-      patch = pkgs.fetchpatch {
-        name = "bfqsched.patch";
-        url = "https://github.com/linusw/linux-bfq/compare/"
-            + "07d9a380680d1c0eb51ef87ff2eab5c994949e69"
-            + "...add-bfq-logical.patch";
-        sha256 = "078k0fm7d4ahfrz6g9xgzsv3iqbcc2haj803jrn2c1rpghcpm9g8";
-      };
-      extraConfig = ''
-        IOSCHED_BFQ y
-        DEFAULT_BFQ y
-        DEFAULT_CFQ n
-        DEFAULT_IOSCHED "bfq"
-      '';
-    };
-
-    kernelPackages = with pkgs; let
-      trimVer = ver: take 2 (splitString "." (replaceChars ["-"] ["."] ver));
-      tooOld = trimVer linux_latest.version == trimVer linux_testing.version;
-      kernel = if tooOld then linux_latest else linux_testing;
-    in linuxPackagesFor kernel;
+  vuizvui.user.aszlig.system.kernel.enable = true;
 
+  boot = {
     initrd.kernelModules = [ "fbcon" "usb_storage" ];
     loader.grub.device = "/dev/disk/by-id/${diskID}";
     loader.timeout = 1;