From b965172dd4bfc0fe35ee1627328727016dc77cff Mon Sep 17 00:00:00 2001 From: kekrby Date: Fri, 14 Oct 2022 22:17:09 +0300 Subject: [PATCH] common.nix: install python globally (it is needed for the new version of the firmware script) --- nix/common.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nix/common.nix b/nix/common.nix index 6f83b6a..5ade721 100644 --- a/nix/common.nix +++ b/nix/common.nix @@ -12,5 +12,6 @@ environment.systemPackages = with pkgs; [ git + python3 ]; }