mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
27 lines
485 B
Nix
27 lines
485 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 {
|
|
# Install packages
|
|
environment.systemPackages = with pkgs; [
|
|
bash
|
|
bash-completion
|
|
neovim
|
|
ripgrep
|
|
tmux
|
|
tmuxp
|
|
git
|
|
git-annex
|
|
killall
|
|
pciutils
|
|
pinentry-curses
|
|
trash-cli
|
|
unzip
|
|
nnn
|
|
advcpmv
|
|
];
|
|
};
|
|
}
|