This repository has been archived on 2026-07-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nixos/hosts/linode/disko.nix
T
beatzaplenty 679dfd80c0
Check NixOS configurations / eval-hosts (push) Failing after 14m45s
added disko configuration
2026-07-13 19:10:21 +10:00

32 lines
539 B
Nix

{ lib, ... }:
{
disko.devices = {
disk = {
main = {
type = "disk";
device = "/dev/sda";
content = {
type = "gpt";
partitions = {
boot = {
size = "1M";
type = "EF02";
};
root = {
size = "100%";
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
};
};
};
};
};
};
}