mochi/nixos/profiles/hw-threadripperpro.nix

29 lines
572 B
Nix
Raw Normal View History

2024-12-27 21:30:25 -06:00
{ lib, ... }:
{
2024-09-03 20:56:49 -05:00
imports = [ ];
boot = {
loader.systemd-boot.enable = true;
loader.efi.canTouchEfiVariables = true;
2024-12-27 21:30:25 -06:00
initrd.availableKernelModules = [
"xhci_pci"
"ahci"
"nvme"
"usbhid"
"usb_storage"
"sd_mod"
];
2024-09-03 20:56:49 -05:00
initrd.kernelModules = [ ];
kernelModules = [ "kvm-amd" ];
extraModulePackages = [ ];
};
mySystem = {
services.openssh.enable = true;
security.wheelNeedsSudoPassword = false;
};
networking.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}