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
|
|
|
};
|
2025-01-22 17:14:06 -05:00
|
|
|
services.tailscale.enable = true;
|
2024-10-27 19:02:26 -04:00
|
|
|
}
|