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
|
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-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-11-11 22:28:44 -08:00
|
|
|
|
2023-09-12 21:34:40 -07:00
|
|
|
};
|
|
|
|
}
|