mirror of
https://github.com/davegallant/nix-config
synced 2025-08-06 07:13:40 +00:00
30 lines
426 B
Nix
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;
|
|
}
|