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

9 lines
164 B
Nix
Raw Permalink 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-04-06 15:12:19 +00:00
python3
2023-02-05 13:36:38 +00:00
];
}