forked from pub-solar/os
Merge #326
326: ref: pass our lib as lib.our to the module system r=Pacman99 a=blaggacao At least we don't find ourselves with strange module signatures and use something that looks like a dedicated namespace within he module system: `config.lib` --- ```shell ➜ devos git:(da/pass-lib-as-config-lib) rg ourLib ➜ devos git:(da/pass-lib-as-config-lib) # nothing found ``` Co-authored-by: David Arnold <dar@xoe.solutions>
This commit is contained in:
commit
ab4bd584e2
|
@ -71,7 +71,7 @@
|
||||||
channelName = "nixos";
|
channelName = "nixos";
|
||||||
modules = ./modules/module-list.nix;
|
modules = ./modules/module-list.nix;
|
||||||
externalModules = [
|
externalModules = [
|
||||||
{ _module.args.ourLib = self.lib; }
|
{ lib.our = self.lib; }
|
||||||
ci-agent.nixosModules.agent-profile
|
ci-agent.nixosModules.agent-profile
|
||||||
home.nixosModules.home-manager
|
home.nixosModules.home-manager
|
||||||
agenix.nixosModules.age
|
agenix.nixosModules.age
|
||||||
|
|
Loading…
Reference in a new issue