add static landing page

This commit is contained in:
Yisroel Baum 2026-08-05 20:18:22 +03:00
parent 26a5baf72a
commit 37b7e4f619
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
20 changed files with 1564 additions and 11 deletions

View file

@ -11,6 +11,7 @@
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
landingPage = import ./nix/site.nix { inherit pkgs; };
in
{
nixosModules.tide = import ./nix/module.nix;
@ -20,6 +21,8 @@
inherit nixpkgs self system;
};
packages.${system}.landing-page = landingPage;
formatter.${system} = pkgs.nixfmt-tree;
devShells.${system}.default = pkgs.mkShell {