Move modules into modules/

This commit is contained in:
Dave Gallant
2023-07-09 12:28:15 -04:00
parent d2c0d94580
commit 6e19c4512d
10 changed files with 10 additions and 10 deletions

View File

@@ -0,0 +1,30 @@
{
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
traceroute
];
in
linux;
programs.gnupg.agent.enable = true;
}