mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
bahaghari: fix utils as extra module arg
This commit is contained in:
parent
a6fb0c4b53
commit
fb7a15bdfb
@ -8,6 +8,6 @@ in
|
|||||||
# largely based from the `utils` module argument found in NixOS systems.
|
# largely based from the `utils` module argument found in NixOS systems.
|
||||||
_module.args = {
|
_module.args = {
|
||||||
inherit bahaghariLib;
|
inherit bahaghariLib;
|
||||||
bahaghariUtils = import ../lib/utils { inherit config pkgs lib bahaghariLib; };
|
bahaghariUtils = import ../utils { inherit config pkgs lib bahaghariLib; };
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{ config, lib, pkgs, bahaghariLib }:
|
{ config, lib, pkgs, bahaghariLib }@args:
|
||||||
|
|
||||||
let
|
let
|
||||||
callLib = path: import path { inherit config lib pkgs bahaghariLib; };
|
callLib = path: import path args;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
tinted-theming = callLib ./tinted-theming.nix;
|
tinted-theming = callLib ./tinted-theming.nix;
|
||||||
|
Loading…
Reference in New Issue
Block a user