hindki/flake.nix
ryan 8c924ed54f
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 5s
Migrate postgres
2025-10-02 12:19:51 -07:00

35 lines
687 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
];
};
}
);
}