diff options
| -rw-r--r-- | hosts/laptop/disko.nix | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/hosts/laptop/disko.nix b/hosts/laptop/disko.nix index 87c7e82..54b30a1 100644 --- a/hosts/laptop/disko.nix +++ b/hosts/laptop/disko.nix @@ -9,23 +9,21 @@ ESP = { size = "512M"; type = "EF00"; + priority = 1; content = { type = "filesystem"; format = "vfat"; - mountpoint = "/boot"; + mountpoint = "/boot/efi"; mountOptions = [ "umask=0077" ]; }; }; - fedora = { - - }; root = { size = "100%"; content = { type = "btrfs"; extraArgs = [ "-f" ]; subvolumes = { - "/" = { + "/root" = { mountpoint = "/"; mountOptions = [ "noatime" ]; }; |
