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