2024-02-26 18:54:55 -08:00

53 lines
803 B
Nix

{ config, lib, pkgs, user, ... }:
let cfg = config.modules.system.terminal;
in {
options.modules.system.terminal.enable = lib.mkEnableOption "terminal";
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
git
git-annex
lazygit
killall
pciutils
chezmoi
nix-init
btop
cookcli
rbw
# for rbw
pinentry-curses
bash
# for bash
bash-completion
tmux
tmuxp
nnn
# for nnn
advcpmv
unzip
trash-cli
catimg
vim
neovim
# for neovim
nodejs
ripgrep
cargo
taskwarrior
# for taskwarrior
taskopen
taskwarrior-tui
timewarrior
ollama
];
};
}