158: quickstart: fix example r=Mic92 a=Mic92



Co-authored-by: Jörg Thalheim <joerg@thalheim.io>
This commit is contained in:
bors[bot] 2023-02-26 15:00:51 +00:00 committed by GitHub
commit 70cc4881a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -106,10 +106,10 @@ imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
"${builtins.fetchTarball "https://github.com/nix-community/disko/archive/master.tar.gz"}/module.nix"
(pkgs.callPackage ./disko-config.nix {
disks = ["/dev/<disk-name>"]; # replace this with your disk name i.e. /dev/nvme0n1
})
];
disko.devices = pkgs.callPackage ./disko-config.nix {
disks = [ "/dev/<disk-name>" ]; # replace this with your disk name i.e. /dev/nvme0n1
};
```
If you went for the hybrid-partition scheme, than choose grub as a bootloader.