Files
nixos-config/root/base/apps-shell/default.nix
2026-02-12 14:17:28 +01:00

12 lines
154 B
Nix

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