nix machine / user configurations
at terra 711 B view raw
1{ modulesPath, ... }: 2{ 3 imports = [ (modulesPath + "/profiles/qemu-guest.nix") ]; 4 boot.loader.grub.device = "/dev/sda"; 5 boot.initrd.availableKernelModules = [ 6 "ata_piix" 7 "uhci_hcd" 8 "xen_blkfront" 9 ]; 10 boot.initrd.kernelModules = [ "nvme" ]; 11 fileSystems."/" = { 12 device = "/dev/sda1"; 13 fsType = "ext4"; 14 }; 15 # fileSystems."/mnt/data" = { 16 # device = "/dev/disk/by-id/scsi-0HC_Volume_102930299"; 17 # fsType = "btrfs"; 18 # options = [ "noatime" "autodefrag" "compress-force=zstd:8" ]; 19 # }; 20 # services.beesd.filesystems = { 21 # "-" = { 22 # spec = "/dev/disk/by-id/scsi-0HC_Volume_102930299"; 23 # hashTableSizeMB = 48; 24 # verbosity = "crit"; 25 # }; 26 # }; 27}