nixos-configs/devices/nos/modules/arion/homepage/compose.nix

63 lines
1.3 KiB
Nix
Raw Normal View History

{
config,
pkgs,
...
}: let
2024-02-18 00:10:05 -05:00
inherit (config.sops) secrets;
inherit (pkgs.writers) writeYAML;
2024-02-18 00:10:05 -05:00
in {
arion.projects."homepage"."homepage" = {
image = ./images/homepage.nix;
restart = "always";
2024-02-28 12:31:40 -05:00
ports = [
"3020:3000"
];
2024-02-18 00:10:05 -05:00
extra_hosts = ["lan.nelim.org=10.0.0.130"];
2024-02-18 00:10:05 -05:00
env_file = [secrets.homepage.path];
2024-02-18 00:10:05 -05:00
volumes = let
services = writeYAML "services.yaml" (import ./services.nix);
2024-02-18 00:10:05 -05:00
bookmarks = writeYAML "bookmarks.yaml" {};
2024-02-18 00:10:05 -05:00
settings = writeYAML "settings.yaml" {
# FIXME: title not working
title = "bruh";
theme = "dark";
color = "gray";
target = "_self";
2024-02-18 00:10:05 -05:00
layout.video = {
style = "columns";
row = 4;
# columns = 2;
2024-02-18 00:10:05 -05:00
};
};
widgets = writeYAML "widgets.yaml" [
{
resources = {
cpu = true;
memory = true;
disk = "/";
};
}
{
search = {
provider = "duckduckgo";
target = "_blank";
};
}
2024-02-18 00:10:05 -05:00
];
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"
];
2024-02-18 00:10:05 -05:00
};
}