common.nix: install git globally (it is needed for fetchGit, which is used for fetching nixos-hardware during the installation)

This commit is contained in:
kekrby 2022-10-02 19:12:31 +03:00
parent bcfa84572f
commit 71eaf5ef32

View file

@ -1,4 +1,4 @@
{ ... }:
{ pkgs, ... }:
{
nix = {
@ -9,4 +9,8 @@
"t2linux.cachix.org-1:P733c5Gt1qTcxsm+Bae0renWnT8OLs0u9+yfaK2Bejw="
];
};
environment.systemPackages = with pkgs; [
git
];
}