mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
49 lines
752 B
Nix
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
|
|
];
|
|
|
|
};
|
|
}
|