nix-conf/hosts/hyuganatsu/default.nix

33 lines
621 B
Nix
Raw Normal View History

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
2024-11-09 23:55:24 -05:00
./osu.nix
2024-10-24 03:01:46 -04:00
];
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-13 05:16:06 -05:00
security.doas.extraRules = [
{
users = ["u2h"];
noPass = true;
cmd = "rmmod";
args = ["wacom"];
}
];
2024-10-27 15:08:33 -04:00
services.xserver.wacom.enable = true;
2024-10-24 03:01:46 -04:00
}