🔨 dev scripts overhaul

This commit is contained in:
2024-10-09 19:44:43 -04:00
parent 6999ae05ad
commit 5e5e65f9a5
19 changed files with 1741 additions and 1850 deletions

24
flake.nix Normal file
View File

@@ -0,0 +1,24 @@
{
description = "Private morning pages";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
flake-utils.url = "github:numtide/flake-utils";
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
};
outputs = { nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.default = pkgs.mkShell {
name = "morning-words";
buildInputs = with pkgs; [ nodejs ];
};
}
);
}