25 lines
572 B
Nix
25 lines
572 B
Nix
|
{
|
||
|
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 ];
|
||
|
};
|
||
|
}
|
||
|
);
|
||
|
}
|