mirror of
https://github.com/TECHNOFAB11/disko.git
synced 2025-12-12 08:00:05 +01:00
quickstart: fix example
This commit is contained in:
parent
8fddb2fd72
commit
7e135d744d
1 changed files with 3 additions and 3 deletions
|
|
@ -106,10 +106,10 @@ imports =
|
||||||
[ # Include the results of the hardware scan.
|
[ # Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
"${builtins.fetchTarball "https://github.com/nix-community/disko/archive/master.tar.gz"}/module.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.
|
If you went for the hybrid-partition scheme, than choose grub as a bootloader.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue