summaryrefslogtreecommitdiff
path: root/shared/home-manager/development-full/default.nix
blob: 25c63160e0f22170cc2a18fb009b22e96423fc5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# This module pulls in everything development related. Including it will give a
# fully featured development environment with all the bells and whistles. It
# will also explode the closure size, so this shouldn't be included on every
# host!
{...}: {
  imports = [
    ../C
    ../development-minimal
    ../javascript
    ../nix
    ../noweb
    ../python
    ../rust
    ../svelte
  ];
}