t14_legacy_config/home/cli.nix
2022-11-29 21:29:21 -06:00

34 lines
542 B
Nix

{ 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
tree
units
unzip
usbutils
zip
];
}