initial commit

This commit is contained in:
2026-05-04 15:32:04 -04:00
commit 9026b8a5ac
3 changed files with 104 additions and 0 deletions

15
flake.nix Normal file
View File

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