diff options
Diffstat (limited to 'hosts/laptop/disko.nix')
| -rw-r--r-- | hosts/laptop/disko.nix | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/hosts/laptop/disko.nix b/hosts/laptop/disko.nix index 54b30a1..6b9951a 100644 --- a/hosts/laptop/disko.nix +++ b/hosts/laptop/disko.nix @@ -1,5 +1,6 @@ { disko.devices = { + disk = { main = { type = "disk"; device = "/dev/nvme0n1"; @@ -13,12 +14,12 @@ content = { type = "filesystem"; format = "vfat"; - mountpoint = "/boot/efi"; + mountpoint = "/boot"; mountOptions = [ "umask=0077" ]; }; }; - root = { - size = "100%"; + nixos = { + size = "200G"; content = { type = "btrfs"; extraArgs = [ "-f" ]; @@ -42,8 +43,12 @@ }; }; }; + fedora = { + size = "100%"; + }; }; }; }; }; + }; } |
