29 lines
508 B
Nix
29 lines
508 B
Nix
|
{
|
||
|
inputs = {
|
||
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
|
||
|
};
|
||
|
|
||
|
outputs = inputs@{ nixpkgs, ... }:
|
||
|
let
|
||
|
system = "x86_64-linux";
|
||
|
in
|
||
|
{
|
||
|
devShells.${system}.default =
|
||
|
let
|
||
|
pkgs = import nixpkgs {
|
||
|
inherit system;
|
||
|
};
|
||
|
in
|
||
|
pkgs.mkShell {
|
||
|
packages = with pkgs; [
|
||
|
git
|
||
|
nodejs_22
|
||
|
pnpm
|
||
|
nodePackages.prettier
|
||
|
];
|
||
|
|
||
|
shellHook = "fish";
|
||
|
};
|
||
|
};
|
||
|
}
|