Files
dotFiles/overlays/default.nix
Kulvir Singh c5cb34ac1c batman nix
2025-01-06 23:24:42 +05:30

23 lines
575 B
Nix

{inputs, ...}: {
additions = final: _prev: import ../pkgs {pkgs = final;};
modifications = final: prev: {
# ghostty = inputs.ghostty.packages.aarch64-darwin.default;
discord = prev.discord.override {
withOpenASAR = true;
withVencord = true;
};
};
# The stable nixpkgs set (declared in the flake inputs) will be accessible through 'pkgs.stable'
stable-packages = final: _prev: {
stable = import inputs.nixpkgs-stable {
system = final.system;
config.allowUnfree = true;
};
};
# nur = inputs.nur.overlays.default;
}