snowflake/hosts/sora/hardware.nix

36 lines
636 B
Nix
Raw Normal View History

2024-02-08 12:04:15 -05:00
{ modulesPath, ... }:
{
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
2024-01-04 14:41:38 -05:00
2024-02-06 10:47:23 -05:00
zramSwap.enable = true;
boot = {
tmp.cleanOnBoot = true;
loader.grub = {
efiSupport = true;
efiInstallAsRemovable = true;
device = "nodev";
};
initrd = {
2024-02-08 12:04:15 -05:00
availableKernelModules = [
"ata_piix"
"uhci_hcd"
"xen_blkfront"
"vmw_pvscsi"
];
kernelModules = [ "nvme" ];
};
};
2024-01-04 14:41:38 -05:00
fileSystems = {
"/" = {
device = "/dev/sda1";
fsType = "ext4";
};
"/boot" = {
device = "/dev/disk/by-uuid/B793-1B2C";
fsType = "vfat";
};
2023-06-23 09:25:35 -04:00
};
}