configuration.nix/overlays/default.nix
2024-08-07 20:38:52 +02:00

9 lines
217 B
Nix

{ withSystem, ... }: {
flake.overlays.default = _: _:
withSystem "x86_64-linux" (
{ config, ... }: with config.packages; {
inherit nvim bingwp screenshot cursors wpd webshite sal;
}
);
}