aboutsummaryrefslogtreecommitdiff
path: root/nix-personal/disk-config.nix
diff options
context:
space:
mode:
authorAria <me@aria.rip>2023-12-11 19:52:21 +0000
committerAria <me@aria.rip>2023-12-11 19:52:21 +0000
commitc19dc0924481c7edf4938f5aa105f481a787a30e (patch)
treec1dc11ac722136d3a2e929b79fa5461ba603b83f /nix-personal/disk-config.nix
parent688b6527809869465c75d9cb3413d8bcce7aff68 (diff)
refactor(nix-personal): change folder structure
Diffstat (limited to 'nix-personal/disk-config.nix')
-rw-r--r--nix-personal/disk-config.nix48
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"
- ];
- };
- };
- };
- };
- };
- };
-}