This repository has been archived on 2024-11-21. You can view files and clone it, but cannot push or open issues or pull requests.
server_config/sys/home/cli.nix

30 lines
407 B
Nix
Raw Permalink Normal View History

2024-08-23 21:01:33 +02:00
{
2024-08-24 09:52:56 +02:00
lib,
pkgs,
...
}:
with lib; {
2024-08-23 21:01:33 +02:00
programs = {
zsh = {
enable = true;
syntaxHighlighting.enable = true;
};
git = {
enable = true;
userEmail = "fabian@posixlycorrect.com";
2024-08-24 02:16:19 +02:00
userName = "fabian";
2024-08-23 21:01:33 +02:00
};
neovim.enable = true;
};
2024-08-24 09:52:56 +02:00
home.packages = with pkgs; [
file
htop
killall
man-pages
man-pages-posix
tree
zip
unzip
];
2024-08-23 21:01:33 +02:00
}