Archived
0
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
wahpkg/flake.nix

22 lines
377 B
Nix
Raw Permalink Normal View History

2023-01-12 18:51:32 +00:00
{
description = "Linux Package Manager";
inputs = {
2023-01-18 09:42:27 +00:00
nixpkgs.url = "github:NixOS/nixpkgs";
2023-01-12 18:51:32 +00:00
};
outputs = {
self,
nixpkgs,
...
}: let
pkgs = nixpkgs.legacyPackages.x86_64-linux;
in {
devShell.x86_64-linux = pkgs.mkShell {
packages = [pkgs.nodePackages.pnpm pkgs.nodejs-18_x];
};
formatter.x86_64-linux = pkgs.alejandra;
};
}