Files
nix-fleet/modules/base/shellapps/shellapps.nix
2026-03-03 00:35:06 +01:00

11 lines
179 B
Nix

{ ... }: {
flake.nixosModules.shellapps = { pkgs, ... }: {
environment.systemPackages = with pkgs; [
wget
git
nil
yaml-language-server
];
};
}