19 lines
399 B
Nix
19 lines
399 B
Nix
{...}: {
|
|
imports = [
|
|
../../system
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
networking.hostName = "hyuganatsu";
|
|
time.timeZone = "America/Chicago";
|
|
services.xserver = {
|
|
videoDrivers = ["amdgpu"];
|
|
deviceSection = ''Option "TearFree" "true"'';
|
|
};
|
|
users.users.ahnwuoa = {
|
|
isNormalUser = true;
|
|
extraGroups = ["wheel" "podman"];
|
|
};
|
|
services.xserver.wacom.enable = true;
|
|
}
|