From b9226d6fe6045c911ed057781195b35ffc004497 Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Sat, 21 Feb 2026 12:58:50 +0100 Subject: deps: update nixos, nixos-small and nixos-unstable For all: linux: 6.12.65 -> 6.12.74 For hamac: chromium: 143.0.7499.192 -> 145.0.7632.109 firefox: 147.0 -> 147.0.4 jujutsu: 0.37.0 -> 0.38.0 thunderbird: 146.0.1 -> 147.0.1 typst: 0.14.0 -> 0.14.2 wireshark-qt: 4.6.2 -> 4.6.3 For ev: miniflux: 2.2.16 -> 2.2.17 navidrome: 0.58.0 -> 0.60.0 For tente: grafana: 12.3.1 -> 12.3.3 postgresql: 16.11 -> 16.12 --- nixos/hosts/ev/default.nix | 3 +++ nixos/hosts/ev/navidrome.nix | 13 ++++++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) (limited to 'nixos/hosts') diff --git a/nixos/hosts/ev/default.nix b/nixos/hosts/ev/default.nix index d5737fa..022d677 100644 --- a/nixos/hosts/ev/default.nix +++ b/nixos/hosts/ev/default.nix @@ -8,8 +8,11 @@ let ports = import ./ports.nix; helpers = import { inherit config lib pkgs; }; backupHost = "u518695-sub2@u518695-sub2.your-storagebox.de"; + sources = import ; + pkgs-unstable = import sources.nixos-unstable {}; in { + _module.args = { inherit pkgs-unstable; }; imports = [ ./hardware-configuration.nix diff --git a/nixos/hosts/ev/navidrome.nix b/nixos/hosts/ev/navidrome.nix index 0556ef5..9ddd9e1 100644 --- a/nixos/hosts/ev/navidrome.nix +++ b/nixos/hosts/ev/navidrome.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs, ... }: +{ config, lib, pkgs, pkgs-unstable, ... }: let cfg = config.navidrome; @@ -13,9 +13,20 @@ in }; }; + # Using unstable due to build failure on stable (https://github.com/NixOS/nixpkgs/issues/481611). + disabledModules = ["services/audio/navidrome.nix"]; + imports = + let + sources = import ; + in + [ + "${sources.nixos-unstable}/nixos/modules/services/audio/navidrome.nix" + ]; + config = { services.navidrome = { enable = true; + package = pkgs-unstable.navidrome; settings = { Address = "0.0.0.0"; Port = cfg.port; -- cgit v1.3.1