adding trantor; upgrading stable to 25.05

This commit is contained in:
William 2025-06-01 16:43:41 -03:00
parent 58c5ddd075
commit 37558060f4
8 changed files with 174 additions and 11 deletions

View file

@ -0,0 +1,32 @@
{
disko.devices = {
disk = {
main = {
type = "disk";
device = "/dev/sda";
content = {
type = "gpt";
partitions = {
boot = {
size = "512M";
type = "EF00";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
};
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}