flake: install git

This commit is contained in:
Guanran Wang 2023-11-04 15:36:48 +08:00
parent 7314178fa7
commit 63e6aa1b81
Signed by: nyancat
SSH key fingerprint: SHA256:8oWGKciPALWut/6WA27oFKofX+6Wtc0gQnsefXLQx/8

View file

@ -1,9 +1,12 @@
{ ... }:
{ pkgs, ... }:
{
# Enable Flakes
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# Install Git
environment.systemPackages = [ pkgs.git ];
# Does not work with Flake based configurations
system.copySystemConfiguration = false;
programs.command-not-found.enable = false;