Skip to content

Commit 759040e

Browse files
chore: use nix-toolbox instead of nix-helm
1 parent f19fb9a commit 759040e

File tree

3 files changed

+41
-21
lines changed

3 files changed

+41
-21
lines changed

flake.lock

+32-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+7-4
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,11 @@
1010
n2c.url = "github:nlewo/nix2container";
1111
n2c.inputs.nixpkgs.follows = "nixpkgs";
1212

13-
nix-helm.url = "github:gytis-ivaskevicius/nix-helm";
14-
nix-helm.inputs.nixpkgs.follows = "nixpkgs";
13+
nix-toolbox.url = "github:DevPalace/nix-toolbox/";
14+
#nix-toolbox.inputs.nixpkgs.follows = "nixpkgs";
15+
nix-toolbox.inputs.flake-parts.follows = "flake-parts";
16+
nix-toolbox.inputs.nix2container.follows = "";
17+
1518

1619
std = {
1720
url = "github:divnix/std";
@@ -35,7 +38,7 @@
3538
outputs = {
3639
std,
3740
self,
38-
nix-helm,
41+
nix-toolbox,
3942
devshell,
4043
...
4144
} @ inputs:
@@ -72,7 +75,7 @@
7275
system,
7376
...
7477
}: {
75-
legacyPackages.cardano-services = import ./nix/cardano-services/deployments {inherit pkgs nix-helm inputs;};
78+
legacyPackages.cardano-services = import ./nix/cardano-services/deployments {inherit pkgs nix-toolbox inputs;};
7679
};
7780
};
7881
}

nix/cardano-services/deployments/default.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{
33
pkgs,
44
lib ? pkgs.lib,
5-
nix-helm,
5+
nix-toolbox,
66
inputs,
77
}: let
88
mkPodResources = memory: cpu: {inherit memory cpu;};
@@ -35,7 +35,7 @@
3535
"http://localhost"
3636
];
3737
in
38-
nix-helm.builders.${pkgs.system}.mkHelmMultiTarget {
38+
nix-toolbox.legacyPackages.${pkgs.system}.helm.mkHelm {
3939
defaults = final: let
4040
inherit (final) values;
4141
in {

0 commit comments

Comments
 (0)