nixfiles/libs/web/flake.nix
Sebastian Walz 860d31cee1
Tohu vaBohu
2023-04-21 00:22:52 +02:00

19 lines
557 B
Nix

{
description = "Build Websites.";
inputs
= {
libcore.url = "github:sivizius/nixfiles/development?dir=libs/core";
nixpkgs.url = "github:sivizius/nixpkgs/master";
};
outputs
= { self, libcore, nixpkgs, ... }:
let
core = libcore.lib { inherit self; debug.logLevel = "info"; };
in
core.path.import ./.
{
inherit core;
inherit(nixpkgs) lib;
};
}