From a410a402a5dc5c68208ab8d6610fade60c8639c0 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Thu, 9 Jan 2025 14:49:49 -0800 Subject: use disko instead of rolling my own scripts and fixes --- disk-config.nix | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 disk-config.nix (limited to 'disk-config.nix') 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 = "/"; - }; - }; - }; - }; - }; - }; - }; -} -- cgit