dotfiles/nixos/modules/services/default.nix

28 lines
458 B
Nix
Raw Normal View History

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