aboutsummaryrefslogtreecommitdiff
path: root/disk-config.nix
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@gmail.com>2025-01-09 14:49:49 -0800
committerPreston Pan <ret2pop@gmail.com>2025-01-09 14:49:49 -0800
commita410a402a5dc5c68208ab8d6610fade60c8639c0 (patch)
treead1a15f899ba2ca397c0919f74e2c3634502d6c9 /disk-config.nix
parent87ce8be7319fa8612a7edcb9261272688ab099bb (diff)
use disko instead of rolling my own scripts and fixes
Diffstat (limited to 'disk-config.nix')
-rw-r--r--disk-config.nix36
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 = "/";
- };
- };
- };
- };
- };
- };
- };
-}