bakke: Update disk layout

This commit is contained in:
Felix Albrigtsen 2024-10-20 17:40:44 +02:00
parent f024159742
commit 950e2514a7
2 changed files with 2 additions and 9 deletions

View File

@ -8,10 +8,6 @@
content = { content = {
type = "gpt"; type = "gpt";
partitions = { partitions = {
BOOT = {
size = "1M";
type = "EF02"; # for grub MBR
};
ESP = { ESP = {
size = "500M"; size = "500M";
type = "EF00"; type = "EF00";
@ -36,10 +32,6 @@
content = { content = {
type = "gpt"; type = "gpt";
partitions = { partitions = {
boot = {
size = "1M";
type = "EF02"; # for grub MBR
};
ESP = { ESP = {
size = "500M"; size = "500M";
type = "EF00"; type = "EF00";

View File

@ -2,8 +2,9 @@
{ {
# Boot drives: # Boot drives:
imports = [ imports = [
./boot-disks.nix ./disks.nix
]; ];
boot.swraid.enable = true;
# ZFS Data pool: # ZFS Data pool:
environment.systemPackages = with pkgs; [ zfs ]; environment.systemPackages = with pkgs; [ zfs ];