Files
system-config/home-manager/features/development/development.nix
2025-03-02 14:35:06 -08:00

19 lines
244 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; [
direnv
];
}