From 7011f5000865cddbce14226596bb24f6867d062d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20He=C3=9Felmann?= Date: Fri, 27 Sep 2024 08:41:11 +0200 Subject: [PATCH] actually use bitwarden package --- 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;