1
0

add readme to project

This commit is contained in:
2022-11-17 22:59:36 +01:00
parent a53e1a801e
commit 9d969c7181
2 changed files with 4 additions and 3 deletions

View File

@@ -1 +1,2 @@
flake.nix flake.nix
README.md

View File

@@ -1,10 +1,10 @@
{ {
description = "$$REPO_DESCRIPTION"; description = "$REPO_DESCRIPTION";
inputs.nixpkgs.url = "nixpkgs/nixos-22.05-small"; inputs.nixpkgs.url = "nixpkgs/nixos-22.05-small";
outputs = { self, nixpkgs }: outputs = { self, nixpkgs }:
let let
name = "$$REPO_NAME"; name = "$REPO_NAME";
version = "0.0.1"; version = "0.0.1";
supportedSystems = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ]; supportedSystems = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ];
forAllSystems = nixpkgs.lib.genAttrs supportedSystems; forAllSystems = nixpkgs.lib.genAttrs supportedSystems;