nixfiles/nixos/modules/_list.nix

26 lines
610 B
Nix
Raw Normal View History

{
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;
2022-02-22 00:59:57 +00:00
secrets = ./secrets.nix;
2022-03-26 14:20:30 +00:00
containers = ./containers.nix;
vms = ./vms.nix;
network = ./network.nix;
pdns = ./pdns.nix;
2022-06-12 00:31:08 +01:00
nginx-sso = ./nginx-sso.nix;
2022-09-09 01:04:25 +01:00
gui = ./gui.nix;
l2mesh = ./l2mesh.nix;
2023-02-20 01:43:48 +00:00
borgthin = ./borgthin.nix;
2023-12-12 01:34:37 +00:00
nvme = ./nvme;
spdk = ./spdk.nix;
2024-01-03 01:07:12 +00:00
librespeed = ./librespeed;
2024-06-24 00:08:55 +01:00
netboot = ./netboot;
};
}