tachibana hardware
This commit is contained in:
parent
c3814aac58
commit
7ae462acd7
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
inputs,
|
inputs,
|
||||||
...
|
...
|
||||||
|
|
@ -11,13 +12,17 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||||
|
boot.extraModulePackages = [ config.boot.kernelPackages.it87 ];
|
||||||
|
boot.kernelParams = [ "acpi_enforce_resources=lax" ];
|
||||||
|
boot.kernelModules = [ "it87" ];
|
||||||
|
boot.extraModprobeConfig = "options it87 ignore_resource_conflict=1 force_id=0x8622";
|
||||||
networking.hostName = "tachibana";
|
networking.hostName = "tachibana";
|
||||||
time.timeZone = "America/Chicago";
|
time.timeZone = "America/Chicago";
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
videoDrivers = ["nvidia"];
|
videoDrivers = ["nvidia"];
|
||||||
deviceSection = ''Option "TearFree" "true"'';
|
deviceSection = ''Option "TearFree" "true"'';
|
||||||
};
|
};
|
||||||
hardware.nvidia.open = false;
|
hardware.nvidia.open = true;
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
users.users.ahnwuoa = {
|
users.users.ahnwuoa = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
|
|
@ -28,4 +33,6 @@
|
||||||
fwsetup
|
fwsetup
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
|
environment.systemPackages = [pkgs.nvtopPackages.nvidia];
|
||||||
|
programs.coolercontrol.enable = true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue