Compare commits

...

2 commits

3 changed files with 3 additions and 3 deletions

View file

@ -16,7 +16,7 @@
"xhci_pci"
];
kernelPackages = pkgs.linuxPackages_latest; # TODO: See if this fixes sleep issues
plymouth.extraConfig = "DeviceScale=2";
};
hardware.amd-graphics.enable = true;

View file

@ -1,4 +1,4 @@
{ inputs, outputs, ... }:
{ inputs, outputs, pkgs, ... }:
{
imports = [
@ -17,6 +17,7 @@
};
};
kernelPackages = pkgs.linuxPackages_latest;
plymouth.enable = true;
secureboot.enable = true;
};

View file

@ -11,7 +11,6 @@
};
kernelParams = [ "quiet" "splash" ];
plymouth.extraConfig = "DeviceScale=2";
};
};
}