Files
system-config/home-manager/features/development/development.nix
2025-03-27 10:13:50 -07:00

20 lines
262 B
Nix

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