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
|
./options.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs.hostPlatform = "x86_64-linux";
|
nixpkgs = {
|
||||||
|
hostPlatform = "x86_64-linux";
|
||||||
|
config.nvidia.acceptLicense = true;
|
||||||
|
};
|
||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
hostName = "inkvine";
|
hostName = "inkvine";
|
||||||
|
@ -52,7 +55,11 @@
|
||||||
services = {
|
services = {
|
||||||
thermald.enable = true;
|
thermald.enable = true;
|
||||||
upower.enable = true;
|
upower.enable = true;
|
||||||
xserver.videoDrivers = ["nvidia"];
|
xserver = {
|
||||||
|
enable = true;
|
||||||
|
displayManager.gdm.enable = true;
|
||||||
|
videoDrivers = ["nvidia"];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
hardware = {
|
hardware = {
|
||||||
|
@ -62,7 +69,6 @@
|
||||||
|
|
||||||
nvidia = {
|
nvidia = {
|
||||||
modesetting.enable = true;
|
modesetting.enable = true;
|
||||||
nvidiaSettings = false;
|
|
||||||
package = config.boot.kernelPackages.nvidiaPackages.legacy_470;
|
package = config.boot.kernelPackages.nvidiaPackages.legacy_470;
|
||||||
|
|
||||||
prime = {
|
prime = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue