Made advanced graphics settings skinny-only
This commit is contained in:
parent
6b726ea4d2
commit
5e728ae529
2 changed files with 6 additions and 7 deletions
|
@ -1,13 +1,17 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
networking.hostName = "skinnyv";
|
||||
boot.initrd.luks.devices = [
|
||||
boot = {
|
||||
kernelParams = [
|
||||
"i915.enable_rc6=7"
|
||||
];
|
||||
initrd.luks.devices = [
|
||||
{
|
||||
name = "root";
|
||||
device = "/dev/disk/by-uuid/8c76bf01-59b3-4c60-b853-e9cb77f3ca14";
|
||||
preLVM = true;
|
||||
allowDiscards = true;
|
||||
}];
|
||||
|
||||
};
|
||||
imports = [ ../common.nix ];
|
||||
}
|
|
@ -19,9 +19,4 @@
|
|||
};
|
||||
};
|
||||
|
||||
boot = {
|
||||
kernelParams = [
|
||||
"i915.enable_rc6=7"
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue