flake: install git
This commit is contained in:
parent
7314178fa7
commit
63e6aa1b81
1 changed files with 4 additions and 1 deletions
|
@ -1,9 +1,12 @@
|
||||||
{ ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
# Enable Flakes
|
# Enable Flakes
|
||||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||||
|
|
||||||
|
# Install Git
|
||||||
|
environment.systemPackages = [ pkgs.git ];
|
||||||
|
|
||||||
# Does not work with Flake based configurations
|
# Does not work with Flake based configurations
|
||||||
system.copySystemConfiguration = false;
|
system.copySystemConfiguration = false;
|
||||||
programs.command-not-found.enable = false;
|
programs.command-not-found.enable = false;
|
||||||
|
|
Loading…
Reference in a new issue