24 lines
472 B
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"];
|
|
};
|
|
}
|