nix-conf/hosts/hyuganatsu/default.nix
2024-11-03 20:26:10 -06:00

29 lines
700 B
Nix

{pkgs, ...}: {
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"];
};
u2h = {
isNormalUser = true;
};
};
services.udev.packages = [pkgs.opentabletdriver];
services.xserver.wacom.enable = true;
nix.settings = {
substituters = ["https://nix-gaming.cachix.org"];
trusted-public-keys = ["nix-gaming.cachix.org-1:nbjlureqMbRAxR1gJ/f3hxemL9svXaZF/Ees8vCUUs4="];
};
}