System/modules/nix-on-droid/default.nix

12 lines
183 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
let
inherit (import ../lib.nix { inherit lib; inherit pkgs; }) nLib;
in
2022-09-04 02:46:27 -04:00
{
imports = [
../options.nix
];
options = with lib; with nLib; { };
}