mirror of
https://codeberg.org/mart-w/nixos-x13s.git
synced 2024-11-09 17:44:48 +01:00
7 lines
159 B
Nix
7 lines
159 B
Nix
{ lib, withSystem, ... }:
|
|
{
|
|
flake.packages.aarch64-linux = withSystem "aarch64-linux" (
|
|
{ pkgs, ... }: import ./default.nix { inherit lib pkgs; }
|
|
);
|
|
}
|