314 current 2025-10-11 18:09:02 25.05.20251006.20c4598 6.12.50 *

This commit is contained in:
2025-10-11 18:54:41 -05:00
parent 384b18b575
commit 728176d27b
6 changed files with 15 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
# flake for blakes nixos config # flake for blakes nixos config
# define new devices in outputs # define new devices in outputs
# generation: 313 current 2025-10-11 18:01:55 25.05.20251006.20c4598 6.12.50 * # generation: 314 current 2025-10-11 18:09:02 25.05.20251006.20c4598 6.12.50 *
{ {
description = "blakes nix config"; description = "blakes nix config";
inputs = { inputs = {

View File

@@ -5,10 +5,10 @@
# services show up in glance in reverse import order lmao # services show up in glance in reverse import order lmao
imports = [ imports = [
./smarthome/zigbee2mqtt ./home/zigbee2mqtt
./vaultwarden ./vaultwarden
./gitea ./gitea
./smarthome/homeassistant ./home/homeassistant
./immich ./immich
./arr/bazarr ./arr/bazarr
./arr/prowlarr ./arr/prowlarr
@@ -18,9 +18,19 @@
./jellyfin ./jellyfin
./nginx-proxy ./nginx-proxy
./arr/flaresolverr ./arr/flaresolverr
./smarthome/mosquitto ./home/mosquitto
./uptime-kuma ./uptime-kuma
./glance ./glance
]; ];
# add to udr to glance
modules.services.glance.links.<category> = [{
title = service;
url = "https://10.10.0.1";
error-url = "https://10.10.0.1";
check-url = "https://10.10.0.1";
icon = "di:unifi"; }];
} }

View File

@@ -73,6 +73,7 @@ in
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
# declare ${service} group # declare ${service} group
users.groups.${service} = { gid = lib.mkForce cfg.ids; }; users.groups.${service} = { gid = lib.mkForce cfg.ids; };