summaryrefslogtreecommitdiff
path: root/nixos/modules/features/cli-tools/default.nix
blob: 55237c49e3f89852cd071e68bdc570b85e761aa6 (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
{ pkgs, ... }:

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

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