proper amount of tabs

This commit is contained in:
Tao Tien 2025-04-30 19:29:00 -07:00
parent 92abf91263
commit 349da643c6
27 changed files with 2591 additions and 2584 deletions

View file

@ -1,38 +1,38 @@
{lib, ...}: {
disko.devices = {
disk.disk1 = {
device = lib.mkDefault "/dev/sda";
type = "disk";
content = {
type = "gpt";
partitions = {
esp = {
name = "ESP";
start = "1M";
end = "128M";
type = "EF00";
disko.devices = {
disk.disk1 = {
device = lib.mkDefault "/dev/sda";
type = "disk";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
size = "100%";
content = {
type = "btrfs";
mountpoint = "/";
mountOptions = ["noatime" "compress-force=zstd:3" "discard=async"];
subvolumes = {
"/home" = {
mountpoint = "/home";
mountOptions = ["noatime" "compress-force=zstd:3" "discard=async"];
type = "gpt";
partitions = {
esp = {
name = "ESP";
start = "1M";
end = "128M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
size = "100%";
content = {
type = "btrfs";
mountpoint = "/";
mountOptions = ["noatime" "compress-force=zstd:3" "discard=async"];
subvolumes = {
"/home" = {
mountpoint = "/home";
mountOptions = ["noatime" "compress-force=zstd:3" "discard=async"];
};
};
};
};
};
};
};
};
};
};
};
};
}