2023-11-23 01:21:58 -08:00
|
|
|
{ config, lib, pkgs, user, ... }:
|
2023-09-12 21:34:40 -07:00
|
|
|
|
2024-10-26 19:30:30 -07:00
|
|
|
let cfg = config.modules.programs.base-terminal;
|
2023-09-12 21:34:40 -07:00
|
|
|
in {
|
2024-10-26 19:30:30 -07:00
|
|
|
options.modules.programs.base-terminal = with lib; {
|
2024-10-26 19:26:44 -07:00
|
|
|
enable = lib.mkOption {
|
|
|
|
type = with types; bool;
|
|
|
|
default = true;
|
|
|
|
};
|
|
|
|
};
|
2023-09-17 17:04:49 -07:00
|
|
|
|
2024-10-26 19:26:44 -07:00
|
|
|
config = lib.mkIf cfg.enable {
|
2023-09-12 21:34:40 -07:00
|
|
|
environment.systemPackages = with pkgs; [
|
2024-04-21 10:37:47 -07:00
|
|
|
killall # Command-line utility to terminate processes by name.
|
|
|
|
pciutils # Utilities for inspecting and manipulating devices connected to the PCI bus.
|
|
|
|
btop # Terminal-based resource monitor, providing an interactive view of system resources.
|
|
|
|
nix-search-cli # Command-line utility for searching the Nix package repository.
|
|
|
|
rbw # Command-line interface to the Bitwarden password manager.
|
|
|
|
pinentry-curses # Simple curses-based passphrase entry dialog for GnuPG.
|
|
|
|
bash # GNU Bourne-Again SHell, a command language interpreter for Unix-like operating systems.
|
|
|
|
bash-completion # Provides programmable completion for the bash shell.
|
|
|
|
tmux # Terminal multiplexer, allowing multiple terminal sessions within a single window.
|
|
|
|
thefuck # Corrects errors in previous console commands.
|
|
|
|
nnn # Terminal file manager with a focus on performance and ease of use.
|
|
|
|
advcpmv # Advanced version of the Unix utilities cp and mv.
|
|
|
|
unzip # Command-line utility for extracting files from ZIP archives.
|
|
|
|
trash-cli # Command-line interface to the freedesktop.org Trash.
|
|
|
|
vim # Text editor that is highly configurable and widely used, especially in the Unix environment.
|
|
|
|
nodejs # JavaScript runtime built on Chrome's V8 JavaScript engine.
|
|
|
|
ripgrep # Line-oriented search tool that recursively searches directories for a regex pattern.
|
|
|
|
cargo # Package manager and build system for Rust.
|
2024-10-27 10:12:59 -07:00
|
|
|
docker-compose # Docker CLI plugin to define and run multi-container applications with Docker.
|
|
|
|
sesh # Smart session manager for the terminal.
|
|
|
|
zoxide # Fast cd command that learns your habits.
|
|
|
|
fzf # Command-line fuzzy finder for Unix-like operating systems.
|
2023-09-12 21:34:40 -07:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|