16 lines
267 B
Nix
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"'';
|
||
|
|
};
|
||
|
|
}
|