Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix influxdb user, update plex

+11 -2
+2 -2
flake.nix
··· 148 148 (final: prev: { 149 149 # Override the version of Plex installed to be the latest 150 150 plexRaw = prev.plexRaw.overrideAttrs rec { 151 - version = "1.43.1.10561-69cc2fd8d"; 151 + version = "1.43.1.10576-06378bdcd"; 152 152 src = final.fetchurl { 153 153 url = "https://downloads.plex.tv/plex-media-server-new/${version}/debian/plexmediaserver_${version}_amd64.deb"; 154 - sha256 = "o2oZ2pz4opdPd8/gzq8E4oaC0NxqDw3RFcgInJdBGIs="; 154 + sha256 = "OjnqBMBKSEnaEklTQvLg9llvUF3aFgoUCaJeSaiaqNg="; 155 155 }; 156 156 }; 157 157 ## Override the json object that contains verions and hashes for Immich
+9
host-specific/misaki/services.nix
··· 216 216 users.noah = { 217 217 passwordFile = config.age.secrets.influxdb-user-password.path; 218 218 }; 219 + organizations.ngp = { 220 + auths = { 221 + admin = { 222 + operator = true; 223 + description = "Admin operator token"; 224 + tokenFile = config.age.secrets.influxdb-admin-token.path; 225 + }; 226 + }; 227 + }; 219 228 }; 220 229 }; 221 230