Files
dotFiles/overlays/default.nix
2025-01-08 21:18:27 +05:30

19 lines
470 B
Nix

{inputs, ...}: {
additions = final: _prev: import ../pkgs {pkgs = final;};
modifications = final: prev: {
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;
};
};
}