summary refs log tree commit diff
path: root/host/Spacebar-nginx/containers/spacebar-server-dev-nix/root.nix
blob: bb005f985015f31d3d160e028a37d63d90ebae5c (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
{ config, pkgs, lib, ... }:

{
  imports =
    [
      ./services/nginx.nix
      ./services/spacebar-server.nix
    ];

  environment.systemPackages = with pkgs; [
    wget
    neofetch
    lnav
    zsh
    git
    lsd
    htop
    btop
    duf
    kitty.terminfo
    neovim
    tmux
    jq
    yq
    pv
    dig
    cloud-utils
    neovim
  ];
  system.stateVersion = "22.11"; # DO NOT EDIT!
}