19 lines
388 B
Nix
19 lines
388 B
Nix
{config, ...}: {
|
|
flake.modules.nixos.desktop = {
|
|
nixpkgs.hostPlatform = "x86_64-linux";
|
|
|
|
hardware = {
|
|
graphics = {
|
|
enable = true;
|
|
enable32Bit = true;
|
|
};
|
|
};
|
|
|
|
nvidia = {
|
|
modesetting.enable = true;
|
|
powerManagement.enable = true;
|
|
open = false;
|
|
package = config.boot.kernelPackages.nvidiaPackages.production;
|
|
};
|
|
};
|
|
}
|