This commit is contained in:
Henry Hiles 2025-06-20 14:14:44 -04:00
commit a1878bc2e4
No known key found for this signature in database
9 changed files with 187 additions and 68 deletions

View file

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