fix dpi issue on AMD-Workstation

This commit is contained in:
Dmitriy Kholkin 2021-09-15 15:41:21 +03:00
parent 9d5ff8962a
commit 21adf20192

View File

@ -1,8 +1,9 @@
{ inputs, ... }: {
{ inputs, lib, ... }: {
imports = [
./hardware-configuration.nix
inputs.self.nixosProfiles.desktop
];
deviceSpecific.devInfo = {
cpu = {
vendor = "amd";
@ -25,4 +26,6 @@
deviceSpecific.isGaming = true;
deviceSpecific.enableVirtualisation = true;
deviceSpecific.wireguard.enable = true;
hardware.video.hidpi.enable = lib.mkForce false;
}