{ description = "Lifetracker"; inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; inputs.flake-utils.url = "github:numtide/flake-utils"; outputs = { nixpkgs, flake-utils, ... }: flake-utils.lib.eachDefaultSystem ( system: let pkgs = import nixpkgs { inherit system; config.allowUnfree = true; }; in with pkgs; { devShell = pkgs.mkShell { buildInputs = [ bashInteractive glibcLocales git nodejs pnpm postgresql inotify-tools claude-code sqlite ]; }; } ); }