mirror of
https://github.com/divnix/digga.git
synced 2024-12-23 16:11:51 +03:00
imp: pass down self
to grouped folder layout
pass `self` to top level imports in the style of `./examples/groupByConfig`
This commit is contained in:
parent
02d8feb01d
commit
33474e6ffa
@ -1,3 +1,4 @@
|
|||||||
|
{ self, ... }:
|
||||||
{
|
{
|
||||||
modules = [ ./python.toml ];
|
modules = [ ./python.toml ];
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
{ self, ... }:
|
||||||
{
|
{
|
||||||
modules = [ ./my-home.nix ];
|
modules = [ ./my-home.nix ];
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
{ self, ... }:
|
||||||
{
|
{
|
||||||
hostDefaults.channelName = "nixos";
|
hostDefaults.channelName = "nixos";
|
||||||
hosts = {
|
hosts = {
|
||||||
|
@ -298,6 +298,7 @@ let
|
|||||||
|
|
||||||
nixosType = with types; submoduleWith {
|
nixosType = with types; submoduleWith {
|
||||||
modules = [
|
modules = [
|
||||||
|
{ _module.args.self = self; }
|
||||||
{ options = (hostsOpt "nixos") // (hostDefaultsOpt "nixos") // importablesOpt; }
|
{ options = (hostsOpt "nixos") // (hostDefaultsOpt "nixos") // importablesOpt; }
|
||||||
legacyImportablesMod
|
legacyImportablesMod
|
||||||
];
|
];
|
||||||
@ -305,6 +306,7 @@ let
|
|||||||
|
|
||||||
homeType = with types; submoduleWith {
|
homeType = with types; submoduleWith {
|
||||||
modules = [
|
modules = [
|
||||||
|
{ _module.args.self = self; }
|
||||||
{ options = externalModulesOpt // (exportedModulesOpt "home") // importablesOpt; }
|
{ options = externalModulesOpt // (exportedModulesOpt "home") // importablesOpt; }
|
||||||
legacyImportablesMod
|
legacyImportablesMod
|
||||||
];
|
];
|
||||||
@ -312,6 +314,7 @@ let
|
|||||||
|
|
||||||
devshellType = with types; submoduleWith {
|
devshellType = with types; submoduleWith {
|
||||||
modules = [
|
modules = [
|
||||||
|
{ _module.args.self = self; }
|
||||||
{ options = externalModulesOpt // exportedDevshellModulesOpt; }
|
{ options = externalModulesOpt // exportedDevshellModulesOpt; }
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user