Made advanced graphics settings skinny-only

This commit is contained in:
Cyryl Płotnicki 2019-04-26 07:53:13 +01:00
parent 6b726ea4d2
commit 5e728ae529
2 changed files with 6 additions and 7 deletions

View file

@ -1,13 +1,17 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
networking.hostName = "skinnyv"; networking.hostName = "skinnyv";
boot.initrd.luks.devices = [ boot = {
kernelParams = [
"i915.enable_rc6=7"
];
initrd.luks.devices = [
{ {
name = "root"; name = "root";
device = "/dev/disk/by-uuid/8c76bf01-59b3-4c60-b853-e9cb77f3ca14"; device = "/dev/disk/by-uuid/8c76bf01-59b3-4c60-b853-e9cb77f3ca14";
preLVM = true; preLVM = true;
allowDiscards = true; allowDiscards = true;
}]; }];
};
imports = [ ../common.nix ]; imports = [ ../common.nix ];
} }

View file

@ -19,9 +19,4 @@
}; };
}; };
boot = {
kernelParams = [
"i915.enable_rc6=7"
];
};
} }