nixos/home/env/default.nix

24 lines
333 B
Nix

{pkgs, ...}: {
imports = [
./bash.nix
./bat.nix
./direnv.nix
./fish.nix
./keychain.nix
./nushell.nix
./starship.nix
./zsh.nix
];
home.packages = with pkgs; [
dig
file
gnumake
zip
unzip
neofetch
silver-searcher
distrobox
];
programs.nix-index.enable = true;
}