mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
28 lines
458 B
Nix
28 lines
458 B
Nix
![]() |
{
|
||
|
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"
|
||
|
]);
|
||
|
}
|