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

22 lines
334 B
Nix

{ ... }:
{
imports = [
# Dev apps
../git.nix
../shell.nix
../neovim
../ssh.nix
# Base languages that should always be available
./nix.nix
./lua.nix
];
programs.direnv = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
}