mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 19:51:34 +01:00
Simplify wrapper imports
This commit is contained in:
parent
43c8adddb6
commit
42ebeaf86e
19 changed files with 298 additions and 248 deletions
|
|
@ -1,8 +1,12 @@
|
|||
{ assembleWrapper, moduleArgs, ... }:
|
||||
let
|
||||
inherit (moduleArgs) pkgs;
|
||||
in
|
||||
assembleWrapper {
|
||||
basePackage = pkgs.marktext;
|
||||
flags = [ "--disable-gpu" ];
|
||||
}
|
||||
{ inputs, pkgs, ... }:
|
||||
(inputs.wrapper-manager.lib {
|
||||
inherit pkgs;
|
||||
modules = [
|
||||
{
|
||||
wrappers.marktext = {
|
||||
basePackage = pkgs.marktext;
|
||||
flags = [ "--disable-gpu" ];
|
||||
};
|
||||
}
|
||||
];
|
||||
}).config.wrappers.marktext.wrapped
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue