mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 02:25:12 -05:00
27 lines
406 B
Nix
Executable file
27 lines
406 B
Nix
Executable file
let
|
|
serviceFolders = [
|
|
"mastodon"
|
|
];
|
|
|
|
serviceFiles = [
|
|
"acme"
|
|
"caddy"
|
|
"jellyfin"
|
|
"logrotate"
|
|
"minecraft"
|
|
"ollama"
|
|
"peertube"
|
|
"postgresql"
|
|
"owncast"
|
|
"samba"
|
|
"vaultwarden"
|
|
"wiki"
|
|
# "forgejo"
|
|
# "castopod"
|
|
# "nextcloud"
|
|
];
|
|
in {
|
|
imports =
|
|
(map (folder: ./${folder}) serviceFolders)
|
|
++ (map (file: ./${file}.nix) serviceFiles);
|
|
}
|