nix/host/x86_64-linux/home/Container.nix

59 lines
1.8 KiB
Nix
Raw Normal View History

2024-06-25 04:04:39 +03:00
{ ... }: {
container = {
enable = true;
autoStart = true;
2024-06-24 03:32:33 +03:00
2024-06-25 04:04:39 +03:00
module = {
2024-09-01 03:43:52 +03:00
# ISSUE: hdd.enable = true;
2024-08-19 12:44:06 +03:00
change.enable = true;
2024-06-25 04:04:39 +03:00
cloud.enable = true;
ddns.enable = true;
dns.enable = true;
download.enable = true;
2024-09-01 03:43:52 +03:00
frkn.enable = true;
2024-06-25 04:04:39 +03:00
git.enable = true;
home.enable = true;
iot.enable = true;
jobber.enable = true;
mail.enable = true;
office.enable = true;
2024-06-25 04:04:39 +03:00
paper.enable = true;
pass.enable = true;
paste.enable = true;
postgres.enable = true;
2024-06-26 08:24:04 +03:00
print.enable = true;
2024-06-25 04:04:39 +03:00
proxy.enable = true;
rabbitmq.enable = true;
read.enable = true;
redis.enable = true;
search.enable = true;
status.enable = true;
stock.enable = true;
vpn.enable = true;
watch.enable = true;
yt.enable = true;
};
2024-06-24 03:32:33 +03:00
2024-06-26 08:57:54 +03:00
storage = "/storage/hot/container";
domain = "voronind.com";
2024-08-14 02:19:47 +03:00
host = "188.242.247.132";
interface = "enp8s0";
localAccess = "10.0.0.0/24";
2024-06-13 17:00:05 +03:00
media = {
2024-08-26 11:23:50 +03:00
anime = [ "/storage/cold_1/anime" "/storage/cold_2/anime" ];
book = [ "/storage/hot/book" ];
2024-06-13 17:00:05 +03:00
download = [ "/storage/hot/download" ];
2024-08-26 11:23:50 +03:00
manga = [ "/storage/cold_1/manga" "/storage/cold_2/manga" ];
movie = [ "/storage/cold_1/movie" "/storage/cold_2/movie" ];
music = [ "/storage/cold_2/music" "/storage/hot/music" ];
paper = [ "/storage/hot/paper" ];
porn = [ "/storage/cold_2/porn" ];
photo = [ "/storage/hot/container/cloud/data/data/cakee/files/photo" "/storage/cold_1/backup/tmp/photo" ];
show = [ "/storage/cold_1/show" "/storage/cold_2/show" ];
study = [ "/storage/cold_1/study" "/storage/cold_2/study" ];
work = [ "/storage/cold_2/work" ];
youtube = [ "/storage/cold_1/youtube" "/storage/cold_2/youtube" ];
2024-06-13 17:00:05 +03:00
};
};
}