Make git available to root

Necessary for if we need to run nixos-rebuild switch under root.
This commit is contained in:
Donovan Glover 2023-05-17 16:10:02 -04:00
parent 43cb50c2ce
commit 33d4e88d01
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -1,4 +1,8 @@
{ pkgs, ... }:
{
environment.systemPackages = [ pkgs.git ];
home-manager.sharedModules = [{
programs.git = {
enable = true;