init: publish to git

This commit is contained in:
Nojus 2025-07-11 13:48:40 +02:00
parent 6646d73273
commit 302458a933
5 changed files with 152 additions and 0 deletions

10
flake.nix Normal file
View file

@ -0,0 +1,10 @@
{
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
outputs = { nixpkgs, ... }: let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in {
packages.${system}.default = pkgs.callPackage ./default.nix {};
};
}