mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-08 21:04:38 -05:00
14 lines
462 B
Nix
Executable file
14 lines
462 B
Nix
Executable file
{ flake, configHelpers, ... }:
|
|
let
|
|
inherit (flake.config.people) user0;
|
|
in
|
|
{
|
|
assets-path = "/home/${user0}/Files/Projects/dotfiles/modules/nixos/services/glance/assets";
|
|
# host = configHelpers.host;
|
|
host = configHelpers.localhost;
|
|
port = configHelpers.service.ports.port0;
|
|
# auth = {
|
|
# secret-key = config.sops.secrets."${service.name}-key".path;
|
|
# users.${user0}.password = config.sops.secrets."${service.name}-${user0}-pass".path;
|
|
# };
|
|
}
|