dotfiles/provision/modules/system/terminal.nix

48 lines
741 B
Nix
Raw Normal View History

{ config, lib, pkgs, user, ... }:
2023-09-12 21:34:40 -07:00
let cfg = config.modules.system.terminal;
in {
options.modules.system.terminal.enable = lib.mkEnableOption "terminal";
config = lib.mkIf cfg.enable {
2023-09-17 17:04:49 -07:00
2023-09-12 21:34:40 -07:00
environment.systemPackages = with pkgs; [
git
git-annex
2023-11-24 14:13:15 -08:00
lazygit
2023-09-12 21:34:40 -07:00
killall
pciutils
2023-09-17 17:04:49 -07:00
chezmoi
2023-11-18 17:19:21 -08:00
nix-init
2023-09-17 17:04:49 -07:00
rbw
# for rbw
pinentry-curses
bash
# for bash
bash-completion
tmux
tmuxp
2023-09-12 21:34:40 -07:00
nnn
2023-09-17 17:04:49 -07:00
# for nnn
advcpmv
unzip
trash-cli
2023-11-18 17:19:21 -08:00
catimg
2023-09-17 17:04:49 -07:00
neovim
# for neovim
nodejs
ripgrep
2023-10-07 02:16:26 -07:00
taskwarrior
2023-10-07 02:16:26 -07:00
# for taskwarrior
taskopen
taskwarrior-tui
timewarrior
2023-09-12 21:34:40 -07:00
];
2023-09-12 21:34:40 -07:00
};
}