We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8eb363e commit 6811641Copy full SHA for 6811641
modules/back-compat.nix
@@ -37,12 +37,19 @@ with lib;
37
type = types.listOf strOrPackage;
38
default = [ ];
39
};
40
+
41
+ packagesFrom = mkOption {
42
+ internal = true;
43
+ type = types.listOf strOrPackage;
44
+ default = [ ];
45
+ };
46
47
48
# Copy the values over to the devshell module
49
config.devshell =
50
{
51
packages = config.packages;
52
+ packagesFrom = config.packagesFrom;
53
startup.bash_extra = noDepEntry config.bash.extra;
54
interactive.bash_interactive = noDepEntry config.bash.interactive;
55
}
0 commit comments