flake/nixos/profiles/core/packages/overlays/default.nix

13 lines
308 B
Nix
Raw Normal View History

2023-12-16 12:05:54 +00:00
_: let
addPatches = pkg: patches:
pkg.overrideAttrs (old: {
patches = (old.patches or []) ++ patches;
});
in {
2023-11-09 04:21:04 +00:00
nixpkgs.overlays = [
2023-12-16 12:05:54 +00:00
(import ./nautilus.nix {inherit addPatches;})
(import ./prismlauncher.nix {inherit addPatches;})
(import ./sway.nix {inherit addPatches;})
2023-09-19 00:17:43 +00:00
];
}