main
 1{den, ...}: {
 2  den.aspects.core.includes = [den.aspects.core.tools];
 3  den.aspects.core.tools = {
 4    nixos = {pkgs, ...}: {
 5      environment.systemPackages = with pkgs; [
 6        # Basic tools
 7        coreutils
 8        findutils
 9
10        # Archives process
11        gnutar
12        p7zip
13        unzipNLS
14        xz
15        zip
16        zstd
17
18        # Networking
19        curl
20        netcat
21        tcpdump
22        wget
23
24        # Misc
25        microfetch
26        fd
27        file
28        git
29        which
30
31        rsync
32      ];
33    };
34  };
35}