updated proxmox disko configuration

This commit is contained in:
2026-07-18 05:54:32 +10:00
parent f8de4c8abc
commit 4822f0b290
5 changed files with 3 additions and 66 deletions
-64
View File
@@ -1,64 +0,0 @@
{ ... }:
{
disko.devices = {
disk.main = {
type = "disk";
device = "/dev/sda";
content = {
type = "gpt";
partitions = {
# bios = {
# size = "1M";
# # content = {
# # type = "EF02";
# # };
# };
root = {
priority = 1;
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
extraArgs = [
"-L"
"nixos"
];
};
};
};
};
};
disk.swap = {
type = "disk";
device = "/dev/sdb";
content = {
type = "gpt";
partitions = {
swap = {
priority = 1;
size = "100%";
content = {
type = "swap";
extraArgs = [
"-L"
"swap"
];
};
};
};
};
};
};
}