nixos-config/images.toml
Gabriel Arazas f033756d6f
config: modularize image creation functions
Additionally, I have also made a declarative version of the project
cluster with a neat little file at `images.toml`. This is way better for
individually referring to hosts from the host directory compared to the
old way.
2023-06-20 19:57:00 +08:00

32 lines
795 B
TOML

# This is a custom data for this project where it lists the images found in
# this flake. This can range from NixOS configurations intended to be deployed
# for servers and desktops to installers.
#
# The data is then used for the image creation functions found in `flake.nix`.
# Each of the entry should correspond to one of the hosts in `./hosts/`
# directory.
#
# Take note, any images with the "iso" format is essentially made to be
# deployed somewhere (e.g., desktop, homelab server, VPS).
[ni]
system = "x86_64-linux"
format = "iso"
[plover]
system = "x86_64-linux"
format = "iso"
domain = "foodogsquared.one"
[void]
system = "x86_64-linux"
format = "vm"
[bootstrap]
system = "x86_64-linux"
format = "install-iso"
[graphical-installer]
system = "x86_64-linux"
format = "install-iso"