summary refs log tree commit diff
path: root/host/Rory-nginx/services/containers/conduwuit-throwaway/root.nix
blob: c2485591dc1d3caf0ef5139243b746b5a514c292 (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
{ 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
  ];
}