This commit is contained in:
parent
db9d75f86c
commit
095b1ade09
2 changed files with 33 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue