mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-30 22:57:55 +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.
|
||||
_module.args = {
|
||||
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
|
||||
callLib = path: import path { inherit config lib pkgs bahaghariLib; };
|
||||
callLib = path: import path args;
|
||||
in
|
||||
{
|
||||
tinted-theming = callLib ./tinted-theming.nix;
|
||||
|
Loading…
Reference in New Issue
Block a user