27 lines
283 B
Nix
27 lines
283 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
./bat.nix
|
||
|
./fish.nix
|
||
|
./neofetch.nix
|
||
|
./starship.nix
|
||
|
];
|
||
|
|
||
|
home.packages = with pkgs; [
|
||
|
autojump
|
||
|
bc
|
||
|
comma
|
||
|
exa
|
||
|
fd
|
||
|
httpie
|
||
|
jq
|
||
|
nixfmt
|
||
|
procs
|
||
|
progress
|
||
|
ripgrep
|
||
|
tldr
|
||
|
trash-cli
|
||
|
tree
|
||
|
];
|
||
|
}
|