init: x13s module and packages

This commit is contained in:
Adam Stephens 2024-01-22 12:47:25 -05:00
commit df8c1f5256
No known key found for this signature in database
13 changed files with 460 additions and 0 deletions

6
packages/part.nix Normal file
View file

@ -0,0 +1,6 @@
{ lib, withSystem, ... }:
{
flake.packages.aarch64-linux = withSystem "aarch64-linux" (
{ pkgs, ... }: import ./default.nix { inherit lib pkgs; }
);
}