baseImage: overridable uvmsPkgs/inherit from scope

This commit is contained in:
Else Someone 2026-03-02 10:49:32 +02:00
parent 18d08e727b
commit a40925c341
2 changed files with 10 additions and 3 deletions

View file

@ -1,3 +1,9 @@
{ nixos }:
{ nixos, overrideScope }:
nixos ../profiles/baseImage.nix
nixos {
imports = [
../profiles/baseImage.nix
];
_module.args.uvmsPkgs = (overrideScope (fi: _: { uvmsPkgs = fi; })).uvmsPkgs;
_file = __curPos.file;
}