Files
nix-config/packages/linux.nix
Dave Gallant bb58e52c2c Add nfs mount
2023-01-14 11:45:10 -05:00

31 lines
439 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
lm_sensors
netdata
pinentry-curses
nfs-utils
rustup
strace
tailscale
unityhub
];
in
linux;
programs.gnupg.agent.enable = true;
}