From 2bce292b21e681618232e93e41a8cd767834cdcc Mon Sep 17 00:00:00 2001 From: Stephan Hesselmann Date: Fri, 27 Sep 2024 08:58:48 +0200 Subject: [PATCH] actually use bitwarden package (#76) --- flake.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 6796a12..f26769d 100644 --- a/flake.nix +++ b/flake.nix @@ -40,9 +40,9 @@ }: let # Pinned packages. - bitwarden = inputs.nixpkgs-stable.pkgs.bitwarden-cli; custom = import ./pkgs { inherit pkgs; }; golang = (import inputs.nixpkgs-golang { inherit system; }).go_1_22; + stable = import inputs.nixpkgs-stable { inherit system; }; terraform = inputs.nixpkgs-terraform.packages.${system}."1.5.7"; # Add Darwin packages here. @@ -126,6 +126,7 @@ prometheus wget ; + inherit (stable) bitwarden-cli; go = golang; helm = pkgs.kubernetes-helm; jsonnet = pkgs.go-jsonnet;