remove git from packages (hm module covers that)

This commit is contained in:
jacekpoz 2024-05-05 14:44:03 +02:00
parent 0ec34d7f5f
commit 188bae299d
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8
4 changed files with 2 additions and 4 deletions

View file

@ -7,7 +7,6 @@
in {
home-manager.users.${username} = {
home.packages = with pkgs; [
git
eza
ripgrep
unzip

View file

@ -15,7 +15,6 @@ in {
agenix = inputs.agenix.packages.${pkgs.system};
nh = inputs.nh.packages.${pkgs.system};
in with pkgs; [
git
librewolf-wayland
keepassxc
eza

View file

@ -15,7 +15,6 @@ in {
agenix = inputs.agenix.packages.${pkgs.system};
nh = inputs.nh.packages.${pkgs.system};
in with pkgs; [
git
librewolf-wayland
keepassxc
eza

View file

@ -42,7 +42,8 @@ in {
config = mkIf cfg.enable {
home-manager.users.${username} = {
programs.git = {
inherit (cfg) enable userName userEmail;
enable = true;
inherit (cfg) userName userEmail;
extraConfig = {
core = {
inherit (cfg) editor;