nix-conf/hosts/yuzu/default.nix

24 lines
472 B
Nix

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