Files
nix-config/packages/linux.nix
2022-10-19 08:39:59 -04:00

29 lines
401 B
Nix

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