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

20 lines
227 B
Nix

{ pkgs, ... }:
{
imports = [
# Dev apps
../git.nix
../shell.nix
../terminal.nix
../neovim
../ssh.nix
# Languages
./nix.nix
./lua.nix
];
home.packages = with pkgs; [
direnv
];
}