Files
system-config/home-manager/features/development/development.nix

27 lines
424 B
Nix

{ 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;
};
}