23 lines
298 B
Nix
23 lines
298 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./bash.nix
|
|
./bat.nix
|
|
./direnv.nix
|
|
./fish.nix
|
|
./keychain.nix
|
|
./readline.nix
|
|
./starship.nix
|
|
./zsh.nix
|
|
];
|
|
home.packages = with pkgs; [
|
|
dig
|
|
file
|
|
gnumake
|
|
zip
|
|
unzip
|
|
neofetch
|
|
silver-searcher
|
|
distrobox
|
|
];
|
|
}
|