This commit is contained in:
Henry Hiles 2025-08-30 17:56:26 -04:00
commit d7c1e54788
No known key found for this signature in database
9 changed files with 54 additions and 34 deletions

View file

@ -2,14 +2,14 @@
pkgs,
inputs,
dirUtils,
isDesktop,
type,
...
}: {
environment.systemPackages = [
(inputs.wrapper-manager.lib {
inherit pkgs;
specialArgs = {inherit inputs;};
modules = with dirUtils; dirFiles ".nix" ./common ++ opt isDesktop (dirFiles ".nix" ./desktop);
modules = with dirUtils; dirFiles ".nix" ./common ++ opt (type == "desktop") (dirFiles ".nix" ./desktop);
})
.config.build.toplevel
];