All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 5s
35 lines
687 B
Nix
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
|
|
];
|
|
};
|
|
}
|
|
);
|
|
}
|