snowflake/hosts/haru/hardware.nix

40 lines
834 B
Nix
Raw Normal View History

2024-02-08 12:04:15 -05:00
{ lib, modulesPath, ... }:
2023-11-30 22:27:58 -05:00
{
2024-02-08 12:04:15 -05:00
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
2023-11-30 22:27:58 -05:00
boot = {
2024-02-08 12:04:15 -05:00
kernelModules = [ ];
extraModulePackages = [ ];
loader.grub = {
enable = true;
configurationLimit = 5;
device = "/dev/sda";
useOSProber = false;
};
initrd = {
2024-02-08 12:04:15 -05:00
availableKernelModules = [
"ata_piix"
"uhci_hcd"
"virtio_pci"
"virtio_scsi"
"sd_mod"
"sr_mod"
];
kernelModules = [ ];
};
};
2023-11-30 22:27:58 -05:00
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/06177115-2e39-493b-81fb-5a1980ae0534";
fsType = "ext4";
};
2023-11-30 22:27:58 -05:00
};
2024-02-08 12:04:15 -05:00
swapDevices = [ { device = "/dev/disk/by-uuid/c879fa21-fd80-422c-9aef-0becce5ff19c"; } ];
2023-11-30 22:27:58 -05:00
networking.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}