hindki/flake.nix
ryan 3b3b1196b6
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
Migrate to sqlite
2025-10-02 11:42:40 -07:00

36 lines
706 B
Nix

{
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
];
};
}
);
}