dotfiles/provision/modules/system/terminal.nix

47 lines
783 B
Nix
Raw Normal View History

2023-10-07 02:16:26 -07:00
{ config, lib, pkgs, pkgs-unstable, 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
killall
pciutils
2023-09-17 17:04:49 -07:00
chezmoi
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
neovim
# for neovim
nodejs
ripgrep
2023-10-09 16:15:47 -07:00
# taskwarrior
taskopen
2023-10-07 02:16:26 -07:00
] ++ [
pkgs-unstable.taskwarrior
# for taskwarrior
pkgs-unstable.taskwarrior-tui
pkgs-unstable.timewarrior
2023-09-12 21:34:40 -07:00
];
2023-09-12 21:34:40 -07:00
};
}