diff --git a/hosts/lemur/disko.nix b/hosts/lemur/disko.nix index ca700c3..f8b2a62 100644 --- a/hosts/lemur/disko.nix +++ b/hosts/lemur/disko.nix @@ -63,20 +63,8 @@ content = { type = "gpt"; partitions = { - home = { - size = "50%"; - content = { - type = "filesystem"; - format = "ext4"; - mountpoint = "/home"; - extraArgs = [ - "-L" - "HOME" - ]; - }; - }; data = { - size = "50%"; + size = "1T"; content = { type = "filesystem"; format = "ext4"; @@ -87,6 +75,18 @@ ]; }; }; + home = { + size = "100%"; + content = { + type = "filesystem"; + format = "ext4"; + mountpoint = "/home"; + extraArgs = [ + "-L" + "HOME" + ]; + }; + }; }; }; };