mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-03-13 16:03:25 +00:00
35 lines
956 B
Nix
35 lines
956 B
Nix
{ pkgs, lib, config, ... }: let
|
|
cfg = config.r5e.containers.homepage;
|
|
settingsFormat = pkgs.formats.yaml {};
|
|
in {
|
|
options.r5e.containers.homepage = {
|
|
enable = lib.mkEnableOption "homepage";
|
|
openFirewall = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
};
|
|
settings = lib.mkOption {
|
|
inherit (settingsFormat) type;
|
|
description = "See https://gethomepage.dev/configs/settings/";
|
|
default = {};
|
|
};
|
|
widgets = lib.mkOption {
|
|
inherit (settingsFormat) type;
|
|
description = "See https://gethomepage.dev/widgets/";
|
|
default = [];
|
|
};
|
|
};
|
|
|
|
config = {
|
|
inherit (./compose.nix);
|
|
|
|
environment.etc = lib.mkIf cfg.enable {
|
|
"homepage-dashboard/settings.yaml".source = settingsFormat.generate "settings.yaml" cfg.settings;
|
|
"homepage-dashboard/widgets.yaml".source = settingsFormat.generate "widgets.yaml" cfg.widgets;
|
|
};
|
|
|
|
networking.firewall = lib.mkIf cfg.openFirewall {
|
|
allowedTCPPorts = [ 3000 ];
|
|
};
|
|
};
|
|
}
|