chore(nix): remove extra home packages for programs

As it can lead to conflicts between versions, I removed the additional
imports. They are not needed as the program is installed by enabling the
program.
This commit is contained in:
Stefan Imhoff
2024-07-29 15:40:37 +02:00
parent 53140e5556
commit 9c6d620ce6
13 changed files with 8 additions and 35 deletions

View File

@@ -1,4 +1,4 @@
{ pkgs, ... }:
{ ... }:
{
programs.bash = {

View File

@@ -62,6 +62,4 @@
};
};
};
home.packages = [ pkgs.bat ];
}

View File

@@ -1,4 +1,4 @@
{ pkgs, ... }:
{ ... }:
{
editorconfig = {
@@ -19,6 +19,4 @@
};
};
};
home.packages = [ pkgs.editorconfig-core-c ];
}

View File

@@ -1,4 +1,4 @@
{ pkgs, ... }:
{ ... }:
{
programs.gh-dash = {
@@ -81,9 +81,4 @@
pager.diff = "";
};
};
home.packages = with pkgs; [
git
gh-dash
];
}

View File

@@ -24,9 +24,4 @@
};
};
};
home.packages = with pkgs; [
git
gh
];
}

View File

@@ -173,7 +173,6 @@
commitizen # Tool to create committing rules for projects, auto bump versions, and generate changelogs
delta # Syntax-highlighting pager for git
gh # GitHub CLI tool
git # Distributed version control system
git-crypt # Transparent file encryption in git
git-extras # GIT utilities -- repo summary, repl, changelog population, author commit percentages and more
git-fixup # Fighting the copy-paste element of your rebase workflow

View File

@@ -25,7 +25,6 @@
'';
home.packages = with pkgs; [
gnupg
pinentry_mac
];
}

View File

@@ -1,4 +1,4 @@
{ pkgs, ... }:
{ ... }:
{
programs.lazygit = {
@@ -29,6 +29,4 @@
];
};
};
home.packages = [ pkgs.lazygit ];
}

View File

@@ -125,7 +125,6 @@
};
home.packages = with pkgs; [
lf
bat
fzf
zoxide # z

View File

@@ -1,4 +1,4 @@
{ pkgs, ... }:
{ ... }:
{
programs.lsd =
@@ -87,8 +87,4 @@
};
};
};
home.packages = with pkgs; [
lsd
];
}

View File

@@ -1,10 +1,8 @@
{ pkgs, ... }:
{ ... }:
{
programs.wezterm = {
enable = true;
extraConfig = builtins.readFile ./wezterm.lua;
};
home.packages = [ pkgs.wezterm ];
}

View File

@@ -1,4 +1,4 @@
{ pkgs, ... }:
{ ... }:
{
programs.yazi = {
@@ -29,6 +29,4 @@
};
};
};
home.packages = [ pkgs.yazi ];
}

View File

@@ -5,6 +5,6 @@
".config/zed/settings.json" = { source = ./settings.json; };
};
# TODO: Currently broken, installed with Homebrew
# FIX: Currently broken, installed with Homebrew
# home.packages = [ pkgs.zed-editor ];
}