nixos-config/components/terminal/default.nix
Ingolf Wagner 847bb88330
🔥 delete hoard
2024-10-23 00:29:03 +09:00

33 lines
514 B
Nix

{
config,
pkgs,
lib,
...
}:
with lib;
{
options.components.terminal = {
enable = mkOption {
type = types.bool;
default = true;
};
};
imports = [
./direnv.nix
./git.nix
./heygpt.nix
./remote-install.nix
./wtf.nix
./zsh.nix
];
config = mkIf config.components.terminal.enable {
environment.systemPackages = [
pkgs.ranger # datei browser
pkgs.retry # retry command till success
pkgs.silver-searcher
pkgs.treefmt
];
};
}