nix-configurations/home/features/coding/default.nix

10 lines
180 B
Nix
Raw Normal View History

2023-02-05 13:36:38 +00:00
{ pkgs, ... }: {
2023-04-05 04:39:26 +00:00
imports = [ ./emacs.nix ./golang.nix ./nix.nix ./nodejs.nix ./rust.nix ./tools.nix ];
2023-02-05 13:36:38 +00:00
home.packages = with pkgs;
[
2023-05-15 11:05:47 +00:00
python3
guile_3_0
2023-02-05 13:36:38 +00:00
];
}