idk why it still won't work
This commit is contained in:
parent
8da523332b
commit
ef38cbc052
1 changed files with 9 additions and 3 deletions
|
@ -3,7 +3,10 @@
|
|||
./options.nix
|
||||
];
|
||||
|
||||
nixpkgs.hostPlatform = "x86_64-linux";
|
||||
nixpkgs = {
|
||||
hostPlatform = "x86_64-linux";
|
||||
config.nvidia.acceptLicense = true;
|
||||
};
|
||||
|
||||
networking = {
|
||||
hostName = "inkvine";
|
||||
|
@ -52,7 +55,11 @@
|
|||
services = {
|
||||
thermald.enable = true;
|
||||
upower.enable = true;
|
||||
xserver.videoDrivers = ["nvidia"];
|
||||
xserver = {
|
||||
enable = true;
|
||||
displayManager.gdm.enable = true;
|
||||
videoDrivers = ["nvidia"];
|
||||
};
|
||||
};
|
||||
|
||||
hardware = {
|
||||
|
@ -62,7 +69,6 @@
|
|||
|
||||
nvidia = {
|
||||
modesetting.enable = true;
|
||||
nvidiaSettings = false;
|
||||
package = config.boot.kernelPackages.nvidiaPackages.legacy_470;
|
||||
|
||||
prime = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue