diff options
author | Aria <me@aria.rip> | 2023-12-11 19:52:21 +0000 |
---|---|---|
committer | Aria <me@aria.rip> | 2023-12-11 19:52:21 +0000 |
commit | c19dc0924481c7edf4938f5aa105f481a787a30e (patch) | |
tree | c1dc11ac722136d3a2e929b79fa5461ba603b83f /nix-personal/disk-config.nix | |
parent | 688b6527809869465c75d9cb3413d8bcce7aff68 (diff) |
refactor(nix-personal): change folder structure
Diffstat (limited to 'nix-personal/disk-config.nix')
-rw-r--r-- | nix-personal/disk-config.nix | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/nix-personal/disk-config.nix b/nix-personal/disk-config.nix deleted file mode 100644 index 5fb5fbc..0000000 --- a/nix-personal/disk-config.nix +++ /dev/null @@ -1,48 +0,0 @@ -# Example to create a bios compatible gpt partition -{lib, ...}: { - disko.devices = { - disk.disk1 = { - device = lib.mkDefault "/dev/sda"; - type = "disk"; - content = { - type = "gpt"; - partitions = { - boot = { - name = "boot"; - size = "1M"; - type = "EF02"; - }; - esp = { - name = "ESP"; - size = "500M"; - type = "EF00"; - content = { - type = "filesystem"; - format = "vfat"; - mountpoint = "/boot"; - }; - }; - swap = { - name = "swap"; - size = "2G"; - content = { - type = "swap"; - }; - }; - root = { - name = "root"; - size = "100%"; - content = { - type = "filesystem"; - format = "ext4"; - mountpoint = "/"; - mountOptions = [ - "defaults" - ]; - }; - }; - }; - }; - }; - }; -} |