diff --git a/hosts/default.nix b/hosts/default.nix index acc5868..872e580 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -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 diff --git a/hosts/kabtop/default.nix b/hosts/kabtop/default.nix index 3ec722a..c6f538d 100644 --- a/hosts/kabtop/default.nix +++ b/hosts/kabtop/default.nix @@ -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 diff --git a/modules/services/server/mealie.nix b/modules/services/server/mealie.nix index f2e6819..3a3951c 100644 --- a/modules/services/server/mealie.nix +++ b/modules/services/server/mealie.nix @@ -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 = { diff --git a/overlays/default.nix b/overlays/default.nix index 7061401..19eca21 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -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;