33 lines
621 B
Nix
33 lines
621 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;
|
|
};
|
|
};
|
|
security.doas.extraRules = [
|
|
{
|
|
users = ["u2h"];
|
|
noPass = true;
|
|
cmd = "rmmod";
|
|
args = ["wacom"];
|
|
}
|
|
];
|
|
services.xserver.wacom.enable = true;
|
|
}
|