about summary refs log tree commit diff stats
path: root/sys/disks/default.nix
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-05-12 13:51:56 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-05-12 13:51:56 +0200
commit7ff60a47f014efd8dcc216d2430ece9b177e56e5 (patch)
tree266943434b0c771d050d005d084bf246d283e779 /sys/disks/default.nix
parentfix(sys/boot): Always update the config-file (diff)
downloadnixos-config-7ff60a47f014efd8dcc216d2430ece9b177e56e5.tar.gz
nixos-config-7ff60a47f014efd8dcc216d2430ece9b177e56e5.zip
fix(sys/boot): Restore the bootsetup to the status quo
Having a read-only ISO (preferably tails) ready to test things is quite
cool, but actually setting this up requires an EFI partition that can
store the 1+ GB ISO. Thus, this change needs to be deferred until a disk
reinstall can be made.
Diffstat (limited to 'sys/disks/default.nix')
-rw-r--r--sys/disks/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/disks/default.nix b/sys/disks/default.nix
index a9dfd7e9..2283db96 100644
--- a/sys/disks/default.nix
+++ b/sys/disks/default.nix
@@ -4,6 +4,7 @@
   pkgs,
   ...
 }: let
+  # FIXME: The iso redeploy requires a bigger efi partition  <2024-05-12>
   cfg = config.soispha.disks;
   defaultMountOptions = [
     "compress-force=zstd:15" # This saves disk space, at a performance cost
@@ -88,7 +89,7 @@ in {
                 content = {
                   type = "filesystem";
                   format = "vfat";
-                  mountpoint = "/efi";
+                  mountpoint = "/boot";
                 };
               };
             };