From 5b8d09f2d7ebb7a1670c695af5761353d5b76d7e Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Sun, 7 Sep 2025 20:48:46 -0700 Subject: create drive abstractions and entry points for disko --- nix/disko/nvme-simple.nix | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 nix/disko/nvme-simple.nix (limited to 'nix/disko/nvme-simple.nix') diff --git a/nix/disko/nvme-simple.nix b/nix/disko/nvme-simple.nix deleted file mode 100644 index 665c17e..0000000 --- a/nix/disko/nvme-simple.nix +++ /dev/null @@ -1,35 +0,0 @@ -{ - disko.devices = { - disk = { - my-disk = { - device = "/dev/nvme0n1"; - type = "disk"; - content = { - type = "gpt"; - partitions = { - ESP = { - type = "EF00"; - size = "500M"; - priority = 1; - content = { - type = "filesystem"; - format = "vfat"; - mountpoint = "/boot"; - mountOptions = [ "umask=0077" ]; - }; - }; - root = { - size = "100%"; - priority = 2; - content = { - type = "filesystem"; - format = "ext4"; - mountpoint = "/"; - }; - }; - }; - }; - }; - }; - }; -} -- cgit v1.3