nix-conf/hosts/tachibana/default.nix

32 lines
646 B
Nix
Raw Normal View History

2025-11-01 13:47:06 -04:00
{
pkgs,
inputs,
...
}: {
2025-10-25 23:53:47 -04:00
imports = [
../../system
./hardware-configuration.nix
./disk.nix
inputs.disko.nixosModules.disko
];
2025-11-01 13:47:06 -04:00
boot.kernelPackages = pkgs.linuxPackages_latest;
2025-10-25 23:53:47 -04:00
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"];
};
2025-11-13 22:24:47 -05:00
boot.loader.grub.extraEntries = ''
menuentry "UEFI Firmware Settings" {
fwsetup
}
'';
2025-10-25 23:53:47 -04:00
}