2023-12-02 17:37:23 -08:00

49 lines
752 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
rbw
# for rbw
pinentry-curses
bash
# for bash
bash-completion
tmux
tmuxp
nnn
# for nnn
advcpmv
unzip
trash-cli
catimg
neovim
# for neovim
nodejs
ripgrep
taskwarrior
# for taskwarrior
taskopen
taskwarrior-tui
timewarrior
];
};
}