mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 15:11:34 +01:00
12 lines
247 B
Nix
12 lines
247 B
Nix
{ inputs, pkgs, ... }:
|
|
(inputs.wrapper-manager.lib {
|
|
inherit pkgs;
|
|
modules = [
|
|
{
|
|
wrappers.marktext = {
|
|
basePackage = pkgs.marktext;
|
|
flags = [ "--disable-gpu" ];
|
|
};
|
|
}
|
|
];
|
|
}).config.wrappers.marktext.wrapped
|