diff --git a/modules/base/shellapps/shellapps.nix b/modules/base/shellapps/shellapps.nix new file mode 100644 index 0000000..8519cf7 --- /dev/null +++ b/modules/base/shellapps/shellapps.nix @@ -0,0 +1,10 @@ +{ ... }: { + flake.nixosModules.shellapps = { pkgs, ... }: { + environment.systemPackages = with pkgs; [ + wget + git + nil + yaml-language-server + ]; + }; +}