server: mealie: use unstable

This commit is contained in:
Kabbone 2025-10-19 13:08:48 +02:00
parent 2a3079f35e
commit 9108daaffb
Signed by: Kabbone
SSH Key Fingerprint: SHA256:A5zPB5I6u5V78V51c362BBdCwhDhfDUVbt7NfKdjWBY
4 changed files with 5 additions and 4 deletions

View File

@ -165,7 +165,7 @@ in
kabtop = lib.nixosSystem { # Desktop profile
inherit system;
specialArgs = { inherit inputs user location nixos-hardware agenix nixpkgs impermanence; };
specialArgs = { inherit inputs user location nixos-hardware agenix nixpkgs pkgs-unstable impermanence; };
modules = [
agenix.nixosModules.default
microvm.nixosModules.host

View File

@ -17,7 +17,7 @@
# └─ default.nix
#
{ config, pkgs, user, agenix, impermanence, ... }:
{ config, pkgs, pkgs-unstable, user, agenix, impermanence, ... }:
{
imports = # For now, if applying to other system, swap files

View File

@ -1,9 +1,10 @@
{ config, pkgs, ... }:
{ config, pkgs, pkgs-unstable, ... }:
{
services.mealie = {
enable = true;
package = pkgs-unstable.mealie;
listenAddress = "127.0.0.1";
credentialsFile = config.age.secrets."services/mealie/credentialsFile".path;
settings = {

View File

@ -1,6 +1,6 @@
{inputs, ...}: {
# This one brings our custom packages from the 'pkgs' directory
additions = final: _prev: import ../packages {pkgs = final;};
additions = final: _prev: import ../pkgs {pkgs = final;};
modifications = final: prev: {
mealie = final.unstable.mealie;