organize files
This commit is contained in:
parent
a1ab95888f
commit
c60ebe0675
4 changed files with 11 additions and 9 deletions
|
@ -1,19 +1,21 @@
|
|||
{
|
||||
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||||
inputs.flake-utils.url = "github:numtide/flake-utils";
|
||||
outputs = {
|
||||
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;
|
||||
|
|
Before Width: | Height: | Size: 198 B After Width: | Height: | Size: 198 B |
Loading…
Add table
Reference in a new issue