mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
14 lines
374 B
Nix
14 lines
374 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
let
|
||
|
bahaghariLib = import ../lib { inherit pkgs; };
|
||
|
in
|
||
|
{
|
||
|
# Setting the Bahaghari lib and extra utilities. The extra utilities are
|
||
|
# largely based from the `utils` module argument found in NixOS systems.
|
||
|
_module.args = {
|
||
|
inherit bahaghariLib;
|
||
|
bahaghariUtils = import ../lib/utils { inherit config pkgs lib bahaghariLib; };
|
||
|
};
|
||
|
}
|