nix-conf/hosts/yuzu/default.nix

24 lines
472 B
Nix
Raw Normal View History

2024-10-27 19:02:26 -04:00
{...}: {
imports = [
../../system
./hardware-configuration.nix
./power.nix
];
networking.hostName = "yuzu";
time.timeZone = "America/Chicago";
2025-01-19 01:17:33 -05:00
boot.loader.grub.useOSProber = true;
2024-10-27 19:02:26 -04:00
services.xserver = {
videoDrivers = ["modesetting"];
deviceSection = ''
Option "DRI" "2"
Option "TearFree" "true"
'';
xkb.options = "ctrl:nocaps";
};
users.users.ahnwuoa = {
isNormalUser = true;
2025-01-20 11:41:53 -05:00
extraGroups = ["wheel"];
2024-10-27 19:02:26 -04:00
};
}