nix/hosts/nixos/thinkpad/disk-config.nix
2025-10-24 13:01:17 +02:00

40 lines
No EOL
1 KiB
Nix

# Disko configuration for ThinkPad P14s Gen 2
# Reflects the actual installed system configuration
# NOTE: This uses UUIDs from the existing installation
{
disko.devices = {
disk = {
main = {
type = "disk";
device = "/dev/nvme0n1";
content = {
type = "gpt";
partitions = {
# EFI System Partition
ESP = {
size = "512M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = [ "fmask=0077" "dmask=0077" ];
};
};
# Root partition - takes remaining space
# Swap is not configured on this system
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}