Files
nix-config/packages/linux.nix
Dave Gallant 4a27b993e2 Add unityhub
2022-10-30 18:09:59 -04:00

30 lines
416 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
pinentry-curses
rfd
rustup
strace
tailscale
unityhub
];
in
linux;
programs.gnupg.agent.enable = true;
}