configuration.nix/overlays/default.nix
2024-08-02 22:43:08 +02:00

15 lines
435 B
Nix

top@{ inputs, withSystem, ... }: {
flake.overlays.default = final: prev:
let system = "x86_64-linux"; in
withSystem system (
{ config, ... }: {
nvim = config.packages.nvim;
bingwp = config.packages.bingwp;
screenshot = config.packages.screenshot;
cursors = config.packages.cursors;
wpd = config.packages.wpd;
sal = inputs.sal.packages.${system}.default;
}
);
}