Files
nix-fleet/modules/base/shellapps/shellapps.nix
Mohamed Chrayed 000c301e11 tree
2026-03-03 20:24:19 +01:00

12 lines
190 B
Nix

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