init: ui bootstrapping nextjs

This commit is contained in:
Johannes Kirschbauer
2023-08-05 11:42:48 +02:00
parent 9fc8595ce9
commit c9b19b5060
25 changed files with 14167 additions and 1 deletions

17
pkgs/ui/flake-module.nix Normal file
View File

@@ -0,0 +1,17 @@
{ self, ... }:
{
perSystem = { pkgs, system, ... }:
let
inherit (self.inputs) floco;
base = pkgs.callPackage ./default.nix { inherit floco system; };
in
{
packages = {
ui = base.pkg.global;
};
devShells.ui = pkgs.callPackage ./shell.nix {
inherit pkgs;
inherit (base) fmod pkg;
};
};
}