nix-conf/hosts/hyuganatsu/default.nix
2024-11-11 22:03:53 -06:00

25 lines
484 B
Nix

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