char/topaz-flake

git clone https://git.t4t.associates/char/topaz-flake

Charlotte Som562b54a

main
326 B8 linesraw
1{ modulesPath, ... }:
2{
3  imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
4  boot.loader.grub.device = "/dev/sda";
5  boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi" ];
6  boot.initrd.kernelModules = [ "nvme" ];
7  fileSystems."/" = { device = "/dev/sda1"; fsType = "ext4"; };
8}