2025-07-03 20:11:18 -05:00
|
|
|
{ flake, configHelpers, ... }:
|
2025-05-26 14:56:10 -05:00
|
|
|
let
|
|
|
|
inherit (flake.config.people) user0;
|
|
|
|
in
|
2025-05-25 18:28:37 -05:00
|
|
|
{
|
2025-05-26 14:56:10 -05:00
|
|
|
assets-path = "/home/${user0}/Files/Projects/dotfiles/modules/nixos/services/glance/assets";
|
2025-07-03 20:42:37 -05:00
|
|
|
# host = configHelpers.host;
|
|
|
|
host = configHelpers.localhost;
|
2025-07-03 20:11:18 -05:00
|
|
|
port = configHelpers.service.ports.port0;
|
2025-05-25 18:28:37 -05:00
|
|
|
# auth = {
|
|
|
|
# secret-key = config.sops.secrets."${service.name}-key".path;
|
|
|
|
# users.${user0}.password = config.sops.secrets."${service.name}-${user0}-pass".path;
|
|
|
|
# };
|
|
|
|
}
|