batman nix

This commit is contained in:
Kulvir Singh
2025-01-05 03:15:23 +05:30
parent 149fd7ac90
commit c5cb34ac1c
88 changed files with 838 additions and 1946 deletions

22
overlays/default.nix Normal file
View File

@@ -0,0 +1,22 @@
{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;
}