22 lines
477 B
Nix
22 lines
477 B
Nix
{inputs, ...}: {
|
|
imports = [
|
|
../../system
|
|
./hardware-configuration.nix
|
|
./disk.nix
|
|
inputs.disko.nixosModules.disko
|
|
];
|
|
|
|
networking.hostName = "tachibana";
|
|
time.timeZone = "America/Chicago";
|
|
services.xserver = {
|
|
videoDrivers = ["nvidia"];
|
|
deviceSection = ''Option "TearFree" "true"'';
|
|
};
|
|
hardware.nvidia.open = false;
|
|
nixpkgs.config.allowUnfree = true;
|
|
users.users.ahnwuoa = {
|
|
isNormalUser = true;
|
|
extraGroups = ["wheel"];
|
|
};
|
|
}
|