Source code + assets for pluie.me
1{
2 description = "Source code of pluie.me";
3
4 inputs.nixpkgs.url = "https://channels.nixos.org/nixos-25.05/nixexprs.tar.xz";
5
6 outputs = {
7 self,
8 nixpkgs,
9 }: let
10 forAllSystems = f: with nixpkgs.lib; genAttrs systems.flakeExposed (s: f (import nixpkgs {system = s;}));
11 in {
12 devShells = forAllSystems (pkgs: {
13 default = pkgs.mkShell {
14 buildInputs = with pkgs; [
15 deno
16 dprint
17 ];
18 };
19 });
20 };
21}