move packages to programs

This commit is contained in:
Sense T 2023-10-10 08:43:43 +00:00
parent c109d73a10
commit 8a9592de74
2 changed files with 37 additions and 35 deletions

View File

@ -17,28 +17,14 @@
# The home.packages option allows you to install Nix packages into your # The home.packages option allows you to install Nix packages into your
# environment. # environment.
home.packages = with pkgs; [ home.packages = with pkgs; [
openssl.dev
pkg-config
direnv
procps procps
bat
icdiff icdiff
thefuck
kubectl kubectl
kubernetes-helm kubernetes-helm
krew krew
yarn
python39
rustup
nodejs_20
virtualenv
proxychains-ng proxychains-ng
less
openssh
openssl
nil nil
qemu coreutils
gcc9
]; ];
# Home Manager is pretty good at managing dotfiles. The primary way to manage # Home Manager is pretty good at managing dotfiles. The primary way to manage
@ -74,26 +60,9 @@
home.shellAliases = { home.shellAliases = {
cao = "fuck"; cao = "fuck";
#ls = "ls --color=auto";
cat = "bat -p --paging=never -u"; cat = "bat -p --paging=never -u";
diff = "icdiff"; diff = "icdiff";
}; };
# Let Home Manager install and manage itself.
programs = {
home-manager.enable = true;
eza = {
enable = true;
enableAliases = true;
git = true;
icons = true;
};
yazi = {
enable = true;
enableZshIntegration = true;
};
};
targets.genericLinux.enable = true; targets.genericLinux.enable = true;
} }

View File

@ -1,7 +1,40 @@
{ { pkgs, ... }: {
programs = { programs = {
home-manager.enable = true;
bat = {
enable = true;
};
less = {
enable = true;
};
direnv = {
enable = true;
enableZshIntegration = true;
};
thefuck = {
enable = true;
enableZshIntegration = true;
};
eza = {
enable = true;
enableAliases = true;
git = true;
icons = true;
};
yazi = {
enable = true;
enableZshIntegration = true;
};
ssh = { ssh = {
enable = true; enable = true;
package = pkgs.openssh;
matchBlocks = { matchBlocks = {
"git-ssh.sense-t.eu.org" = { "git-ssh.sense-t.eu.org" = {
hostname = "gitea.default"; hostname = "gitea.default";
@ -15,7 +48,7 @@
}; };
go = { go = {
enable = true; enable = false;
goPath = ".local/go"; goPath = ".local/go";
}; };