mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 06:03:15 -06:00
21 lines
214 B
Nix
21 lines
214 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.direnv.enable = true;
|
|
environment.systemPackages = with pkgs; [
|
|
chezmoi
|
|
zoxide
|
|
lsd
|
|
fzf
|
|
|
|
# utils
|
|
fd
|
|
bat
|
|
delta
|
|
ripgrep
|
|
|
|
btop
|
|
];
|
|
}
|