server: mealie: use unstable
This commit is contained in:
parent
2a3079f35e
commit
9108daaffb
@ -165,7 +165,7 @@ in
|
|||||||
|
|
||||||
kabtop = lib.nixosSystem { # Desktop profile
|
kabtop = lib.nixosSystem { # Desktop profile
|
||||||
inherit system;
|
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 = [
|
modules = [
|
||||||
agenix.nixosModules.default
|
agenix.nixosModules.default
|
||||||
microvm.nixosModules.host
|
microvm.nixosModules.host
|
||||||
|
|||||||
@ -17,7 +17,7 @@
|
|||||||
# └─ default.nix
|
# └─ default.nix
|
||||||
#
|
#
|
||||||
|
|
||||||
{ config, pkgs, user, agenix, impermanence, ... }:
|
{ config, pkgs, pkgs-unstable, user, agenix, impermanence, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = # For now, if applying to other system, swap files
|
imports = # For now, if applying to other system, swap files
|
||||||
|
|||||||
@ -1,9 +1,10 @@
|
|||||||
|
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, pkgs-unstable, ... }:
|
||||||
{
|
{
|
||||||
|
|
||||||
services.mealie = {
|
services.mealie = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
package = pkgs-unstable.mealie;
|
||||||
listenAddress = "127.0.0.1";
|
listenAddress = "127.0.0.1";
|
||||||
credentialsFile = config.age.secrets."services/mealie/credentialsFile".path;
|
credentialsFile = config.age.secrets."services/mealie/credentialsFile".path;
|
||||||
settings = {
|
settings = {
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{inputs, ...}: {
|
{inputs, ...}: {
|
||||||
# This one brings our custom packages from the 'pkgs' directory
|
# 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: {
|
modifications = final: prev: {
|
||||||
mealie = final.unstable.mealie;
|
mealie = final.unstable.mealie;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user