refactor
This commit is contained in:
parent
13277d4991
commit
1983a9e97b
2 changed files with 3 additions and 6 deletions
|
@ -1,8 +1,6 @@
|
|||
{ lib
|
||||
, pkgs
|
||||
, ...
|
||||
}: {
|
||||
{ lib, pkgs, ... }: {
|
||||
boot = {
|
||||
consoleLogLevel = 3;
|
||||
initrd = {
|
||||
availableKernelModules = [
|
||||
"xhci_pci"
|
||||
|
@ -17,6 +15,7 @@
|
|||
};
|
||||
kernelModules = [ "kvm-intel" ];
|
||||
kernelPackages = pkgs.linuxKernel.packages.linux_xanmod_latest;
|
||||
kernelParams = [ "quiet" ];
|
||||
};
|
||||
|
||||
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
{ pkgs, ... }: {
|
||||
boot.consoleLogLevel = 3;
|
||||
boot.kernelParams = [ "quiet" ];
|
||||
boot.plymouth = {
|
||||
enable = true;
|
||||
themePackages = [
|
||||
|
|
Loading…
Reference in a new issue