nix-conf/hosts/hyuganatsu/default.nix

18 lines
359 B
Nix
Raw Normal View History

2024-10-27 13:34:49 -04:00
{...}: {
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-10-27 14:51:38 -04:00
users.users.ahnwuoa = {
isNormalUser = true;
extraGroups = ["wheel" "podman"];
};
2024-10-24 03:01:46 -04:00
}