mirror of
https://github.com/davegallant/nix-config
synced 2025-08-07 09:12:28 +00:00
31 lines
438 B
Nix
31 lines
438 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
|
|
iotop
|
|
linuxPackages.perf
|
|
netdata
|
|
rfd
|
|
pinentry-curses
|
|
rustup
|
|
strace
|
|
tailscale
|
|
];
|
|
in
|
|
linux;
|
|
|
|
programs.gnupg.agent.enable = true;
|
|
}
|