summaryrefslogtreecommitdiff
path: root/nixos/modules/features/cli-tools/default.nix
blob: bc80ca9b389354708ee002e3488d079322d679ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ pkgs, ... }:

{
  environment.systemPackages = with pkgs; [
    tree
    pkgs.libsixel
    fd
    fzf
    eza
    stow
    util-linux
    nftables
    pkgs.rsync
    cryptsetup
    yt-dlp
    caligula
    fetch
  ];

  # Cross-shell prompt; its config lives in the dotfiles repo, not NixOS.
  programs.starship.enable = true;
}