Files
nix-config/packages/linux.nix
2022-12-04 11:11:07 -05:00

33 lines
451 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
/*
rfd
*/
rustup
strace
tailscale
unityhub
];
in
linux;
programs.gnupg.agent.enable = true;
}