14 lines
140 B
Nix
14 lines
140 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
fish-rust
|
|
starship
|
|
fzf
|
|
bat
|
|
eza
|
|
fd
|
|
ripgrep
|
|
];
|
|
|
|
}
|