nix-conf/system/hyuganatsu/default.nix
2024-10-24 02:01:46 -05:00

16 lines
267 B
Nix

{ ... }:
{
imports = [
../common
./hardware-configuration.nix
];
networking.hostName = "hyuganatsu";
time.timeZone = "America/Chicago";
services.xserver = {
videoDrivers = [ "amdgpu" ];
deviceSection = ''Option "TearFree" "true"'';
};
}