Files
nixos/hosts/nixos-desktop/disko.nix
2026-06-19 05:47:33 +02:00

67 lines
1.4 KiB
Nix

{
disko.devices = {
disk = {
system = {
type = "disk";
device = "/dev/sda";
content = {
type = "gpt";
partitions = {
ESP = {
size = "512M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
home = {
type = "disk";
device = "/dev/sdb";
content = {
type = "gpt";
partitions = {
home = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/home";
};
};
};
};
};
models = {
type = "disk";
device = "/dev/sdc";
content = {
type = "gpt";
partitions = {
models = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/var/lib/private/ollama";
};
};
};
};
};
};
};
}