nixfiles/nixos/modules/_list.nix
Jack O'Sullivan 84ca556c47
All checks were successful
CI / Check, build and cache Nix flake (push) Successful in 34m36s
Installer / Build installer (push) Successful in 4m34s
nixos: Initial netbooting installer
2024-06-24 00:42:26 +01:00

26 lines
610 B
Nix

{
nixos.modules = {
common = ./common.nix;
user = ./user.nix;
build = ./build.nix;
dynamic-motd = ./dynamic-motd.nix;
tmproot = ./tmproot.nix;
firewall = ./firewall.nix;
server = ./server.nix;
deploy-rs = ./deploy-rs.nix;
secrets = ./secrets.nix;
containers = ./containers.nix;
vms = ./vms.nix;
network = ./network.nix;
pdns = ./pdns.nix;
nginx-sso = ./nginx-sso.nix;
gui = ./gui.nix;
l2mesh = ./l2mesh.nix;
borgthin = ./borgthin.nix;
nvme = ./nvme;
spdk = ./spdk.nix;
librespeed = ./librespeed;
netboot = ./netboot;
};
}