Music streaming on ATProto!

fix(flake): put inotify-tools behind a linux conditional

ovyerus.com 4b70a7b5 0acdf80b

verified
Changed files
+7 -6
+7 -6
flake.nix
··· 14 defaultForSystems = fn: forSystems (pkgs: {default = fn pkgs;}); 15 in { 16 devShells = defaultForSystems (pkgs: 17 - pkgs.mkShell { 18 - nativeBuildInputs = with pkgs; [elixir erlang inotify-tools nodejs pnpm tailwindcss_4 watchman]; 19 20 - shellHook = '' 21 - export TAILWINDCSS_PATH="${pkgs.lib.getExe pkgs.tailwindcss_4}" 22 - ''; 23 - }); 24 }; 25 }
··· 14 defaultForSystems = fn: forSystems (pkgs: {default = fn pkgs;}); 15 in { 16 devShells = defaultForSystems (pkgs: 17 + with pkgs; 18 + mkShell { 19 + nativeBuildInputs = [elixir erlang nodejs pnpm tailwindcss_4 watchman] ++ (lib.optional stdenv.isLinux [inotify-tools]); 20 21 + shellHook = '' 22 + export TAILWINDCSS_PATH="${lib.getExe tailwindcss_4}" 23 + ''; 24 + }); 25 }; 26 }