{ pkgs, ... }: { imports = [ # Dev apps ../git.nix ../shell.nix ../neovim ../ssh.nix # Base languages that should always be available ./nix.nix ./lua.nix ./sh.nix ]; home.packages = with pkgs; [ hyperfine # Benchmarking tool ]; programs.direnv = { enable = true; enableBashIntegration = true; enableZshIntegration = true; nix-direnv.enable = true; }; }