trying to get nix develop to work

This commit is contained in:
Chris Cochrun 2022-05-23 06:25:21 -05:00
parent da34f629af
commit b45763a62c
9 changed files with 58 additions and 7 deletions

14
flake.nix Normal file
View file

@ -0,0 +1,14 @@
{
description = "A Church Presentation Application";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem
(system:
let pkgs = nixpkgs.legacyPackages.${system}; in
{
devShell = import ./shell.nix { inherit pkgs; };
}
);
}