mochi/nixos/profiles/hw-hetzner-cax.nix

30 lines
608 B
Nix
Raw Normal View History

2024-12-27 21:30:25 -06:00
{ lib, ... }:
{
2024-06-20 08:59:56 -05:00
imports = [ ];
2024-07-30 18:47:59 -05:00
boot = {
loader.systemd-boot.enable = true;
loader.efi.canTouchEfiVariables = true;
2024-12-27 21:30:25 -06:00
initrd.availableKernelModules = [
"xhci_pci"
"virtio_pci"
"virtio_scsi"
"usbhid"
"sr_mod"
];
2024-07-30 18:47:59 -05:00
initrd.kernelModules = [ ];
kernelModules = [ ];
extraModulePackages = [ ];
};
2024-06-20 08:59:56 -05:00
mySystem = {
services.openssh.enable = true;
security.wheelNeedsSudoPassword = false;
};
networking.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
2024-08-04 06:43:38 -05:00
# not supported
services.smartd.enable = false;
2024-06-20 08:59:56 -05:00
}