nixos/system/home/shell/default.nix

29 lines
440 B
Nix
Raw Normal View History

2024-07-30 15:06:34 +01:00
{ pkgs, ... }:
{
imports = [
./bat.nix
./bottom.nix
./direnv.nix
./eza.nix
./fastfetch.nix
./fzf.nix
./git.nix
./readline.nix
./ssh.nix
./starship.nix
];
home.packages = with pkgs; [
rclone
git-sync
du-dust
];
programs = {
bash.enable = true;
fish.enable = true;
fd.enable = true;
jq.enable = true;
2024-07-31 06:17:53 +01:00
nix-index.enable = true;
ripgrep.enable = true;
};
}