configuration.nix/home/common/programs/default.nix

24 lines
327 B
Nix
Raw Normal View History

2023-05-18 16:11:26 +05:30
{pkgs, ...}: {
imports = [
./bat.nix
./btop.nix
./direnv.nix
./exa.nix
./git.nix
./starship.nix
./zsh.nix
];
home.packages = with pkgs; [
lazydocker
ripgrep
];
programs = {
fzf.enable = true;
lazygit.enable = true;
ssh.enable = true;
zoxide.enable = true;
};
}