1
Fork 0

Import disko as module

This commit is contained in:
Matei Adriel 2023-07-17 18:54:31 +02:00
commit 9075130cc8
No known key found for this signature in database
4 changed files with 17 additions and 1 deletions
hosts/nixos/lapetus

View file

@ -28,9 +28,14 @@
# zfs rollback -r zroot@blank
# '';
disko.devices = import ./partitions.nix {
devices = [ "/dev/sda" ];
};
# Boot
boot.loader.grub = {
enable = true;
version = 2;
device = "/dev/sda";
};
}