dotfiles/nixos/modules/services/default.nix

26 lines
392 B
Nix
Raw Normal View History

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