dotfiles/nixos/modules/services/default.nix

23 lines
358 B
Nix
Raw Normal View History

2024-11-23 20:40:51 -06:00
{
2024-11-23 20:45:46 -06:00
imports =
2025-01-18 17:17:13 -06:00
(map (folder: ./${folder}) [
"mastodon"
])
++ (map (file: ./${file}.nix) [
"acme"
"caddy"
"jellyfin"
"logrotate"
"minecraft"
"ollama"
"upRootNutrition"
"peertube"
"postgresql"
"owncast"
"samba"
"vaultwarden"
2025-01-18 21:50:42 -06:00
"forgejo"
2025-01-18 17:17:13 -06:00
# "nextcloud"
]);
2024-11-23 20:40:51 -06:00
}