add wrappers

This commit is contained in:
Henry Hiles 2023-12-26 13:01:54 -05:00
parent 05bf2c1c60
commit 8a2c922b27
10 changed files with 154 additions and 108 deletions

14
wrappers/default.nix Normal file
View file

@ -0,0 +1,14 @@
{
pkgs,
inputs,
dirUtils,
isDesktop,
...
}: {
environment.systemPackages = with dirUtils; [
(inputs.wrapper-manager.lib.build {
inherit pkgs;
modules = dirFiles ./common ++ opt isDesktop (dirFiles ./common-desktop);
})
];
}