ci!!
All checks were successful
ci/woodpecker/push/build-deploy Pipeline was successful

This commit is contained in:
41666 2025-05-14 00:18:25 -07:00
parent db9d75f86c
commit 095b1ade09
2 changed files with 33 additions and 1 deletions

View file

@ -10,9 +10,14 @@
outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } {
systems = [ "x86_64-linux" "aarch64-linux" ];
perSystem = { config, self', pkgs, lib, system, ... }: let
in {
in rec {
devShells.default = import ./shell.nix { inherit pkgs; };
apps.default = apps.dev;
apps.dev = pkgs.writeShellScript "noe.sh" ''
${pkgs.python3} -m http.server -d ${packages.default}
'';
packages.default = inputs.teapot.packages.${system}.brewTea {
name = "noe.sh";
version = "0.0.0";