14 lines
233 B
Nix
14 lines
233 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 silver-searcher];
|
|
}
|