configuration.nix/overlays/default.nix

15 lines
435 B
Nix
Raw Normal View History

2024-08-02 19:27:41 +02:00
top@{ inputs, withSystem, ... }: {
flake.overlays.default = final: prev:
2024-08-02 22:43:08 +02:00
let system = "x86_64-linux"; in
2024-08-02 19:27:41 +02:00
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;
}
);
}