t14_legacy_config/home/cli.nix

36 lines
560 B
Nix
Raw Normal View History

2022-11-30 04:29:21 +01:00
{ config, lib, pkgs, ... } :
with lib;
{
programs = {
zsh = {
enable = true;
enableSyntaxHighlighting = true;
initExtra = import ./zshrc.nix pkgs;
};
git = {
enable = true;
userEmail = "fabian@cluster451.org";
userName = "Fabián Montero";
signing.key = "E77A808BF9A955D668EEEA6473FA9C9CB5F0249B";
};
};
home.packages = with pkgs;
[
calc
file
gcc
htop
killall
man-pages
man-pages-posix
2023-03-23 11:10:39 +01:00
rar
2022-11-30 04:29:21 +01:00
tree
units
2023-03-23 11:10:39 +01:00
unrar
2022-11-30 04:29:21 +01:00
unzip
usbutils
zip
];
}