16 lines
257 B
Nix
16 lines
257 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./bash.nix
|
|
./bat.nix
|
|
./direnv.nix
|
|
./fish.nix
|
|
./keychain.nix
|
|
./nix-index.nix
|
|
./readline.nix
|
|
./starship.nix
|
|
./zsh.nix
|
|
];
|
|
home.packages = with pkgs; [ dig file gnumake silver-searcher ];
|
|
}
|