dotfiles/nixos/modules/services/default.nix

28 lines
428 B
Nix
Raw Normal View History

2024-11-04 02:09:15 -06:00
{
imports =
2024-11-04 02:09:15 -06:00
(map
(folder: ./${folder})
[
"mastodon"
])
++ (map
(file: ./${file}.nix)
[
"acme"
"caddy"
"jellyfin"
"logrotate"
"minecraft"
"ollama"
"peertube"
"postgresql"
"owncast"
"samba"
"vaultwarden"
"wiki"
# "forgejo"
# "castopod"
# "nextcloud"
]);
2024-10-06 15:25:05 -05:00
}