33 lines
729 B
Nix
33 lines
729 B
Nix
{ modulesPath, ... }:
|
|
{
|
|
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
|
|
boot.loader.grub.device = "/dev/sda";
|
|
boot.initrd.availableKernelModules = [
|
|
"ata_piix"
|
|
"uhci_hcd"
|
|
"xen_blkfront"
|
|
"vmw_pvscsi"
|
|
];
|
|
boot.initrd.kernelModules = [ "nvme" ];
|
|
fileSystems."/" = {
|
|
device = "/dev/sda1";
|
|
fsType = "ext4";
|
|
};
|
|
# swap
|
|
swapDevices = [
|
|
{
|
|
device = "/var/swapfile";
|
|
size = 4 * 1024;
|
|
priority = 1024;
|
|
}
|
|
];
|
|
zramSwap.enable = true;
|
|
# volumes
|
|
services.btrfs.autoScrub.enable = true;
|
|
fileSystems.data = {
|
|
device = "/dev/disk/by-id/scsi-0HC_Volume_101470796";
|
|
fsType = "btrfs";
|
|
mountPoint = "/mnt/data";
|
|
options = [ "compress=zstd" ];
|
|
};
|
|
}
|