hosts/beatrice, global/avahi

This commit is contained in:
tulg 2026-01-13 00:11:24 +03:00
parent 6b3f5da05b
commit b813ad2f36
6 changed files with 144 additions and 2 deletions

32
hosts/beatrice/disko.nix Normal file
View file

@ -0,0 +1,32 @@
{
disko.devices = {
disk = {
nixos = {
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 = "/";
};
};
};
};
};
};
};
}