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,19 +1,21 @@
{ {
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils"; inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { outputs =
{
self, self,
nixpkgs, nixpkgs,
flake-utils, flake-utils,
}: }:
flake-utils.lib.eachDefaultSystem (system: flake-utils.lib.eachDefaultSystem (
system:
let let
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
in in
{ {
packages.website = pkgs.stdenv.mkDerivation { packages.website = pkgs.stdenv.mkDerivation {
name = "0xa-website"; name = "0xa-website";
src = self; src = src/.;
installPhase = "cp -r . $out"; 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