Files
system-config/home-manager/features/development/development.nix
2025-02-25 14:26:28 -08:00

20 lines
264 B
Nix

{ pkgs, ... }:
{
imports = [
# Dev apps
../git.nix
../shell.nix
../terminal.nix
../neovim
../ssh.nix
# Base languages that should always be available
./nix.nix
./lua.nix
];
home.packages = with pkgs; [
direnv
];
}