nix-conf/hosts/hyuganatsu/default.nix

16 lines
270 B
Nix
Raw Normal View History

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