mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-10 04:42:17 +00:00
21 lines
No EOL
371 B
Nix
21 lines
No EOL
371 B
Nix
{ pkgs, ... }: {
|
|
# Core CLI apps
|
|
|
|
imports = [
|
|
./exa.nix
|
|
./git.nix
|
|
./fish.nix
|
|
./tmux.nix
|
|
./vim.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
babelfish # Lets fish speak bash
|
|
bottom # Prettier top
|
|
httpie # Better curl
|
|
jq # JSON pretty printer and manipulator
|
|
powershell # Powershell
|
|
python3 # Python 3
|
|
tldr # TLDR pages
|
|
];
|
|
} |