All checks were successful
Check meta / check_dns (pull_request) Successful in 21s
Check meta / check_meta (pull_request) Successful in 20s
Check workflows / check_workflows (pull_request) Successful in 30s
Run pre-commit on all files / pre-commit (push) Successful in 52s
Build all the nodes / ap01 (pull_request) Successful in 1m16s
Build all the nodes / bridge01 (pull_request) Successful in 1m59s
Build all the nodes / geo01 (pull_request) Successful in 2m24s
Build all the nodes / geo02 (pull_request) Successful in 2m14s
Build all the nodes / hypervisor01 (pull_request) Successful in 1m55s
Build all the nodes / hypervisor02 (pull_request) Successful in 1m50s
Build all the nodes / netcore02 (pull_request) Successful in 33s
Build all the nodes / hypervisor03 (pull_request) Successful in 1m44s
Build all the nodes / compute01 (pull_request) Successful in 3m25s
Build all the nodes / storage01 (pull_request) Successful in 2m23s
Build all the nodes / tower01 (pull_request) Successful in 1m55s
Build all the nodes / rescue01 (pull_request) Successful in 2m28s
Build all the nodes / testing02 (pull_request) Successful in 2m18s
Build all the nodes / vault01 (pull_request) Successful in 2m8s
Build the shell / build-shell (pull_request) Successful in 58s
Build all the nodes / web01 (pull_request) Successful in 2m30s
Run pre-commit on all files / pre-commit (pull_request) Successful in 50s
Build all the nodes / web02 (pull_request) Successful in 1m43s
Build all the nodes / web03 (pull_request) Successful in 1m46s
37 lines
835 B
Nix
37 lines
835 B
Nix
# SPDX-FileCopyrightText: 2024 Maurice Debray <maurice.debray@dgnum.eu>
|
|
#
|
|
# SPDX-License-Identifier: EUPL-1.2
|
|
|
|
_: {
|
|
disko.devices = {
|
|
disk = {
|
|
main = {
|
|
device = "/dev/sda";
|
|
type = "disk";
|
|
content = {
|
|
type = "gpt";
|
|
partitions = {
|
|
ESP = {
|
|
type = "EF00";
|
|
size = "1G";
|
|
content = {
|
|
type = "filesystem";
|
|
format = "vfat";
|
|
mountpoint = "/boot";
|
|
mountOptions = [ "umask=0077" ];
|
|
};
|
|
};
|
|
root = {
|
|
size = "100%";
|
|
content = {
|
|
type = "filesystem";
|
|
format = "ext4";
|
|
mountpoint = "/";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|