2024-11-03 21:23:34 -05:00
|
|
|
{pkgs, ...}: {
|
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-11-03 21:23:34 -05:00
|
|
|
users.users = {
|
|
|
|
|
ahnwuoa = {
|
|
|
|
|
isNormalUser = true;
|
|
|
|
|
extraGroups = ["wheel" "podman"];
|
|
|
|
|
};
|
|
|
|
|
u2h = {
|
|
|
|
|
isNormalUser = true;
|
|
|
|
|
};
|
2024-10-27 14:51:38 -04:00
|
|
|
};
|
2024-11-03 21:23:34 -05:00
|
|
|
services.udev.packages = [pkgs.opentabletdriver];
|
2024-10-27 15:08:33 -04:00
|
|
|
services.xserver.wacom.enable = true;
|
2024-11-03 21:23:34 -05:00
|
|
|
nix.settings = {
|
|
|
|
|
substituters = ["https://nix-gaming.cachix.org"];
|
|
|
|
|
trusted-public-keys = ["nix-gaming.cachix.org-1:nbjlureqMbRAxR1gJ/f3hxemL9svXaZF/Ees8vCUUs4="];
|
|
|
|
|
};
|
2024-10-24 03:01:46 -04:00
|
|
|
}
|