nix-conf/hosts/yuzu/default.nix
2024-10-27 18:02:26 -05:00

23 lines
442 B
Nix

{...}: {
imports = [
../../system
./hardware-configuration.nix
./power.nix
];
networking.hostName = "yuzu";
time.timeZone = "America/Chicago";
services.xserver = {
videoDrivers = ["modesetting"];
deviceSection = ''
Option "DRI" "2"
Option "TearFree" "true"
'';
xkb.options = "ctrl:nocaps";
};
users.users.ahnwuoa = {
isNormalUser = true;
extraGroups = ["wheel" "podman"];
};
}