Files
nixos-config/root/base/apps-shell/default.nix
2025-05-29 13:53:53 +02:00

12 lines
154 B
Nix

# Shell Apps for every host.
{ pkgs, ... }:
{
environment.systemPackages =
(with pkgs; [
wget
git
nil
yaml-language-server
]);
}