summaryrefslogtreecommitdiff
path: root/hosts/cloud/packages.nix
blob: 64f2c957ca30f96d303a7e35d3dac0934e16e9e1 (plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
  config,
  pkgs,
  ...
}: {
  nixpkgs.config = {
    allowUnfree = true;
  };

  environment.systemPackages = with pkgs; [
    helix
    fish
    # unix utilities
    tmux
    bat # cat replacement written in Rust
    colordiff
    direnv # Per-directory environment variables
    lsd
    fd # find replacement written in Rust
    fzf # Fuzzy finder
    git
    glibcLocales
    gnumake
    htop # Resource monitoring
    jq # JSON parsing for the CLI
    lsof
    ripgrep # grep replacement written in Rust
    sd # Fancy sed replacement
    silver-searcher
    skim # High-powered fuzzy finder written in Rust
    strace # debug stack trace
    tealdeer # tldr for various shell tools
    testdisk
    tokei # Handy tool to see lines of code by language
    watchexec # Fileystem watcher/executor useful for speedy development
    # xsv # CSV file parsing utility
    just # Intriguing new make replacement
    mdcat # Markdown converter/reader for the CLI
    tree
    unzip
    zip
    ncdu

    # networking
    curl
    caddy # simple web server made with go
    innernet

    # s3
    minio
    # streaming
    ffmpeg
    # databases
    # postgresql
    # sqlite
  ];
}