14 lines
265 B
Nix
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"'';
|
|
};
|
|
}
|