summary refs log tree commit diff
path: root/host/Rory-nginx/services/containers/matrixunittests/root.nix
blob: a9929d22d64466d7b93fafcb6a9e0f81286df322 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
  config,
  pkgs,
  lib,
  conduit,
  ...
}:

{
  imports = [
    ./services/nginx.nix
    ./services/conduit.nix
    ./services/pantalaimon.nix
  ];

  environment.systemPackages = with pkgs; [
    wget
    neofetch
    lnav
    zsh
    git
    lsd
    htop
    btop
    duf
    kitty.terminfo
    neovim
    tmux
    jq
    yq
    pv
    dig
    cloud-utils
  ];
}