nix-conf/hosts/hyuganatsu/default.nix

18 lines
359 B
Nix

{...}: {
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"];
};
}