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

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

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