2024-10-27 13:34:49 -04:00
|
|
|
{...}: {
|
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 = {
|
2024-10-27 13:34:49 -04:00
|
|
|
videoDrivers = ["amdgpu"];
|
2024-10-24 03:01:46 -04:00
|
|
|
deviceSection = ''Option "TearFree" "true"'';
|
|
|
|
|
};
|
2024-10-27 14:51:38 -04:00
|
|
|
users.users.ahnwuoa = {
|
|
|
|
|
isNormalUser = true;
|
|
|
|
|
extraGroups = ["wheel" "podman"];
|
|
|
|
|
};
|
2024-10-27 15:08:33 -04:00
|
|
|
services.xserver.wacom.enable = true;
|
2024-10-24 03:01:46 -04:00
|
|
|
}
|