packages: project plus init

This commit is contained in:
ooks-io 2025-01-09 21:56:36 +11:00
parent 5fee6a8970
commit 308f18cdcd
3 changed files with 220 additions and 2 deletions

View file

@ -1,6 +1,7 @@
{
inputs,
lib,
hozen,
...
}: {
perSystem = {pkgs, ...}: let
@ -12,8 +13,18 @@
website = callPackage ./website {};
caddy-with-cloudflare = callPackage ./caddy-with-cloudflare {};
#ook-vim = mkNeovim pkgs [ook-vim-config];
ook-vim = callPackage ./ook-vim {inherit inputs pkgs lib;};
wii-u-gc-adapter = callPackage ./wii-u-gc-adapter {};
ook-vim = callPackage ./ook-vim {inherit inputs pkgs lib hozen;};
project-plus = let
fpp-config = callPackage ./project-plus/fpp-config.nix {};
fpp-launcher = callPackage ./project-plus/fpp-launcher.nix {};
fpp-sd = callPackage ./project-plus/fpp-sd.nix {};
in
callPackage ./project-plus {
inherit fpp-config fpp-launcher fpp-sd;
};
};
};
}