initial commit

This commit is contained in:
raf 2023-11-03 10:25:58 +03:00
commit a7d89a9499
No known key found for this signature in database
GPG key ID: 02D1DD3FA08B6B29
10 changed files with 348 additions and 0 deletions

18
flake.nix Normal file
View file

@ -0,0 +1,18 @@
{
description = "Description for the project";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
};
outputs = inputs @ {flake-parts, ...}:
flake-parts.lib.mkFlake {inherit inputs;} {
systems = ["x86_64-linux" "aarch64-linux"];
imports = [./pkgs];
perSystem = _: {};
flake = {};
};
}