nix-conf/hosts/hyuganatsu/default.nix
2024-10-27 12:34:49 -05:00

14 lines
265 B
Nix

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