blumeops/nixos/ringtail/disk-config.nix

84 lines
1.9 KiB
Nix
Raw Permalink Normal View History

{
disko.devices = {
disk = {
nvme = {
type = "disk";
device = "/dev/nvme0n1";
content = {
type = "gpt";
partitions = {
ESP = {
size = "512M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = [ "umask=0077" ];
};
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
games = {
type = "disk";
device = "/dev/sda";
content = {
type = "gpt";
partitions = {
games = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/mnt/games";
};
};
};
};
};
storage1 = {
type = "disk";
device = "/dev/sdb";
content = {
type = "gpt";
partitions = {
storage1 = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/mnt/storage1";
};
};
};
};
};
storage2 = {
type = "disk";
device = "/dev/sdc";
content = {
type = "gpt";
partitions = {
storage2 = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/mnt/storage2";
};
};
};
};
};
};
};
}