aboutsummaryrefslogtreecommitdiff
path: root/modules/workstation/devel/base/default.nix
blob: a12f770fe58379462158c40e04ccad1fa370e345 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* BASE DEVEL TOOLS
 *
 * Any tool that should be present on a system,
 * without being required in a specific context
 */

{ pkgs, ... }:

{
  home.packages = with pkgs; [
    curl
    gnupg
    wget
  ];
}