Init direnv and flake.nix

This commit is contained in:
ryan 2025-06-02 15:13:53 -07:00
parent 62a35cafb7
commit b4b3af6695
2 changed files with 44 additions and 0 deletions

3
.envrc Normal file
View File

@ -0,0 +1,3 @@
#source_url "https://raw.githubusercontent.com/cachix/devenv/82c0147677e510b247d8b9165c54f73d32dfd899/direnvrc" "sha256-7u4iDd1nZpxL4tCzmPG0dQgC5V+/44Ba+tHkPob1v2k="
#use devenv
use flake

41
flake.nix Normal file
View File

@ -0,0 +1,41 @@
{
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
inherit (pkgs.lib) optional optionals;
pkgs = import nixpkgs { inherit system; };
in
with pkgs;
{
devShell = pkgs.mkShell {
buildInputs =
[
bashInteractive
glibcLocales
git
nodejs
pnpm
postgresql
netlify-cli
]
++ optional stdenv.isLinux inotify-tools
++ optional stdenv.isDarwin terminal-notifier
++ optionals stdenv.isDarwin (
with darwin.apple_sdk.frameworks;
[
CoreFoundation
CoreServices
]
);
};
}
);
}