added starter adguard home config for rockpro.

This commit is contained in:
Gabe Venberg 2024-06-21 12:09:07 -05:00
parent 98a92683bd
commit 9a0f9b005b
5 changed files with 25 additions and 2 deletions

View file

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