mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-12-01 20:46:12 +01:00
Need to apply recurseIntoAttrs
twice for packages
Signed-off-by: magic_rb <magic_rb@redalder.org>
This commit is contained in:
parent
4eb5431d23
commit
4809daa3d6
|
@ -144,7 +144,7 @@
|
||||||
in {
|
in {
|
||||||
nixng = recurseIntoAttrs (mapAttrs (_: v: v.config.system.build.toplevel) config.flake.nixngConfigurations);
|
nixng = recurseIntoAttrs (mapAttrs (_: v: v.config.system.build.toplevel) config.flake.nixngConfigurations);
|
||||||
nixos = recurseIntoAttrs (mapAttrs (_: v: v.config.system.build.toplevel) config.flake.nixosConfigurations);
|
nixos = recurseIntoAttrs (mapAttrs (_: v: v.config.system.build.toplevel) config.flake.nixosConfigurations);
|
||||||
packages = recurseIntoAttrs config.flake.packages;
|
packages = recurseIntoAttrs (mapAttrs (_: v: recurseIntoAttrs v) config.flake.packages);
|
||||||
};
|
};
|
||||||
|
|
||||||
uterranix.config = [
|
uterranix.config = [
|
||||||
|
|
Loading…
Reference in a new issue