nix-conf/hosts/tachibana/default.nix

22 lines
477 B
Nix
Raw Permalink Normal View History

2025-10-25 23:53:47 -04:00
{inputs, ...}: {
imports = [
../../system
./hardware-configuration.nix
./disk.nix
inputs.disko.nixosModules.disko
];
networking.hostName = "tachibana";
time.timeZone = "America/Chicago";
2025-10-31 16:59:20 -04:00
services.xserver = {
videoDrivers = ["nvidia"];
deviceSection = ''Option "TearFree" "true"'';
};
hardware.nvidia.open = false;
nixpkgs.config.allowUnfree = true;
2025-10-25 23:53:47 -04:00
users.users.ahnwuoa = {
isNormalUser = true;
extraGroups = ["wheel"];
};
}