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