diff options
author | Soispha <soispha@vhack.eu> | 2023-07-01 19:54:52 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-07-10 16:44:15 +0200 |
commit | f8e7e5482d23c62a5446ce3ef3337f821e6505fc (patch) | |
tree | d78c57edf2525237ee91cbd4c44408ab25cac5a1 /system | |
parent | Fix(system/disks): Add .snapshot subvol for snapper (diff) | |
download | nixos-config-f8e7e5482d23c62a5446ce3ef3337f821e6505fc.tar.gz nixos-config-f8e7e5482d23c62a5446ce3ef3337f821e6505fc.zip |
Fix(system/disks): Make ESP bootable
Diffstat (limited to '')
-rw-r--r-- | system/disks/default.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/system/disks/default.nix b/system/disks/default.nix index 171ee292..ac729e65 100644 --- a/system/disks/default.nix +++ b/system/disks/default.nix @@ -82,6 +82,7 @@ in { type = "EF00"; size = "512M"; name = "boot"; + bootable = true; content = { type = "filesystem"; format = "vfat"; |