Files
nix-config/packages/linux.nix
Dave Gallant 929bc70df1 Update RFD
2022-07-05 18:59:35 -04:00

30 lines
426 B
Nix

{
config,
lib,
pkgs,
...
}: let
inherit (pkgs) stdenv;
in {
# System-wide packages to install.
environment.systemPackages = with pkgs; let
linux = [
cryptsetup
docker
docker-compose
rfd
glibcLocales
iotop
linuxPackages.perf
netdata
pinentry-curses
rustup
strace
tailscale
];
in
linux;
programs.gnupg.agent.enable = true;
}