diff options
Diffstat (limited to 'disk-config.nix')
-rw-r--r-- | disk-config.nix | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/disk-config.nix b/disk-config.nix deleted file mode 100644 index ca67b19..0000000 --- a/disk-config.nix +++ /dev/null @@ -1,36 +0,0 @@ -{ - disko.devices = { - disk = { - main = { - type = "disk"; - content = { - type = "gpt"; - partitions = { - boot = { - size = "1M"; - type = "EF02"; # for grub MBR - }; - ESP = { - size = "1G"; - type = "EF00"; - content = { - type = "filesystem"; - format = "vfat"; - mountpoint = "/boot"; - mountOptions = [ "umask=0077" ]; - }; - }; - root = { - size = "100%"; - content = { - type = "filesystem"; - format = "ext4"; - mountpoint = "/"; - }; - }; - }; - }; - }; - }; - }; -} |