dotfiles/nixos/modules/services/default.nix

28 lines
458 B
Nix
Raw Normal View History

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