nixos_PC/shared/cli_packages.nix

33 lines
437 B
Nix
Raw Normal View History

2024-08-24 12:54:21 +02:00
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
curl
git
htop
ripgrep
trash-cli
usbutils
wget
];
2024-08-24 19:14:19 +02:00
programs.git = {
enable = true;
prompt.enable = true;
config = {
init = {
defaultBranch = "main";
};
};
};
2024-08-24 12:54:21 +02:00
programs.neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
};
}
# vim: tabstop=2 softtabstop=2