nix-conf/system/hyuganatsu/default.nix

16 lines
267 B
Nix
Raw Normal View History

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