security hardcoding

This commit is contained in:
Danilo Reyes 2025-09-28 14:40:13 -06:00
parent 2a11c338a0
commit 712a0728a3
3 changed files with 5 additions and 5 deletions

View File

@ -20,7 +20,7 @@ in
listenPort = cfg.port;
environmentFile = config.sops.secrets.homepage.path;
settings = {
providers.openweathermap = "ca54bc3999f608a5ad6e48b9c6c002ec";
providers.openweathermap = "{{HOMEPAGE_VAR_OPENWEATHERMAP_API_KEY}}";
layout = import ./homepage/layout.nix;
};
widgets = import ./homepage/widgets.nix;

View File

@ -48,7 +48,7 @@ in
};
};
};
config = lib.mkIf config.my.servers.qbittorrent.enable {
config = lib.mkIf (config.my.servers.qbittorrent.enable && config.my.secureHost) {
home-manager.users.jawz = {
xdg = {
dataFile.vuetorrent.source = vuetorrent;

File diff suppressed because one or more lines are too long