nixos-configs/devices/nos/modules/arion/homepage/compose.nix
matt1432 cea02da54c
All checks were successful
Discord / discord commits (push) Has been skipped
refactor(arion): remove toYAML and use writeYAML instead
2024-03-19 13:36:02 -04:00

62 lines
1.3 KiB
Nix

{
config,
pkgs,
...
}: let
inherit (config.sops) secrets;
inherit (pkgs.writers) writeYAML;
in {
arion.projects."homepage"."homepage" = {
image = ./images/homepage.nix;
restart = "always";
ports = [
"3020:3000"
];
extra_hosts = ["lan.nelim.org=10.0.0.130"];
env_file = [secrets.homepage.path];
volumes = let
services = writeYAML "services.yaml" (import ./services.nix);
bookmarks = writeYAML "bookmarks.yaml" {};
settings = writeYAML "settings.yaml" {
# FIXME: title not working
title = "bruh";
theme = "dark";
color = "gray";
target = "_self";
layout.video = {
style = "columns";
row = 4;
# columns = 2;
};
};
widgets = writeYAML "widgets.yaml" [
{
resources = {
cpu = true;
memory = true;
disk = "/";
};
}
{
search = {
provider = "duckduckgo";
target = "_blank";
};
}
];
in [
"${bookmarks}:/app/config/bookmarks.yaml:ro"
"${services}:/app/config/services.yaml:ro"
"${settings}:/app/config/settings.yaml:ro"
"${widgets}:/app/config/widgets.yaml:ro"
];
};
}