File tree Expand file tree Collapse file tree 4 files changed +53
-9
lines changed
Expand file tree Collapse file tree 4 files changed +53
-9
lines changed Original file line number Diff line number Diff line change 44 inputs = {
55 nixpkgs . url = "github:nixos/nixpkgs?ref=nixos-unstable" ;
66 flake-utils . url = "github:numtide/flake-utils" ;
7+ internal-helpers = {
8+ url = "github:ut-code/internal-helpers" ;
9+ inputs . nixpkgs . url = "nixpkgs" ;
10+ } ;
711 } ;
812
913 outputs = {
1014 nixpkgs ,
1115 flake-utils ,
16+ internal-helpers ,
1217 ...
1318 } :
1419 flake-utils . lib . eachDefaultSystem ( system : let
1520 pkgs = nixpkgs . legacyPackages . ${ system } ;
1621 in {
17- devShells . default = pkgs . callPackage ./shell.nix { } ;
22+ devShells . default = pkgs . callPackage ./shell.nix {
23+ inherit internal-helpers ;
24+ } ;
1825 } ) ;
1926}
Original file line number Diff line number Diff line change 3838 "date-fns" : " ^4.1.0" ,
3939 "markdown-to-txt" : " ^2.0.1" ,
4040 "sharp" : " ^0.34.2" ,
41- "svelte" : " ^5.33.1"
41+ "svelte" : " ^5.33.1" ,
42+ "tailwindcss" : " ^4.1.7" ,
43+ "@tailwindcss/vite" : " ^4.1.7"
4244 },
4345 "devDependencies" : {
4446 "@astrojs/check" : " ^0.9.4" ,
4547 "@biomejs/biome" : " ^1.9.4" ,
46- "@tailwindcss/vite" : " ^4.1.7" ,
4748 "lefthook" : " ^1.11.13" ,
4849 "prettier" : " ^3.5.3" ,
4950 "prettier-plugin-astro" : " ^0.14.1" ,
5051 "prettier-plugin-svelte" : " ^3.4.0" ,
5152 "prettier-plugin-tailwindcss" : " ^0.6.11" ,
5253 "rollup-plugin-visualizer" : " ^5.14.0" ,
53- "tailwindcss" : " ^4.1.7" ,
5454 "typescript" : " ^5.8.3"
5555 }
5656}
Original file line number Diff line number Diff line change 1- { pkgs ? import <nixpkgs> { } } :
1+ {
2+ pkgs ? import <nixpkgs> { } ,
3+ internal-helpers ? builtins . getFlake "github:ut-code/internal-helpers"
4+ } :
25pkgs . mkShell {
36 packages = [
47 pkgs . bun
58 pkgs . nodejs-slim # required by astro to find sharp
69 pkgs . ffmpeg
710 pkgs . imagemagick
11+ internal-helpers . packages . ${ pkgs . system } . disallow-large-dir
812 ] ;
913}
You can’t perform that action at this time.
0 commit comments