organize files

This commit is contained in:
Grisha Shipunov 2025-02-15 16:59:33 +01:00
parent a1ab95888f
commit c60ebe0675
4 changed files with 11 additions and 9 deletions

View file

@ -1,22 +1,24 @@
{
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = {
self,
nixpkgs,
flake-utils,
outputs =
{
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (system:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
{
packages.website = pkgs.stdenv.mkDerivation {
name = "0xa-website";
src = self;
src = src/.;
installPhase = "cp -r . $out";
};
packages.default = self.packages.${system}.website;
packages.default = self.packages.${system}.website;
}
);
}

View file

Before

Width:  |  Height:  |  Size: 198 B

After

Width:  |  Height:  |  Size: 198 B