blob: c2ee44808db87994a8f4b0b00cdd3fc6a79bd00e (
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
|
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
tree
pkgs.libsixel
fd
fzf
eza
stow
util-linux
nftables
pkgs.rsync
cryptsetup
yt-dlp
caligula
fetch
smartmontools
amneziawg-tools
amneziawg-go
secretspec
claude-code
opencode
];
# Cross-shell prompt; its config lives in the dotfiles repo, not NixOS.
programs.starship.enable = true;
}
|