nixos-config/nixos/hosts/kanako-hkg0/hardware-configuration.nix

21 lines
377 B
Nix
Raw Permalink Normal View History

2024-12-24 21:17:36 +08:00
{ modulesPath, profiles, ... }:
2024-12-13 01:08:04 +08:00
{
2024-12-24 21:17:36 +08:00
imports = with profiles; [
2024-12-13 01:08:04 +08:00
(modulesPath + "/profiles/qemu-guest.nix")
2024-12-24 21:17:36 +08:00
system.disko.btrfs-bios-compat
2024-12-13 01:08:04 +08:00
];
2024-12-24 21:17:36 +08:00
disko.devices = {
nodev."/".mountOptions = [ "size=2G" ];
disk.main.device = "/dev/vda";
};
2024-12-13 01:08:04 +08:00
boot.initrd.availableKernelModules = [
"ahci"
"xhci_pci"
"virtio_pci"
"sr_mod"
"virtio_blk"
];
}