nix-infra/hosts/maine-coon/hardware-configuration.nix
2024-03-24 19:02:45 +01:00

18 lines
407 B
Nix

{ ... }: {
boot.initrd.availableKernelModules = [ "ahci" "nvme" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/nvme0n1p2";
fsType = "btrfs";
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/69ed72d0-20c2-440e-a036-7de658766ee0";
fsType = "ext2";
};
swapDevices = [ ];
}