nixos/overlays/default.nix

37 lines
1,015 B
Nix
Raw Normal View History

2023-07-22 03:46:24 +04:00
{ inputs, ...}:
2023-07-08 20:00:13 +04:00
{
# This one brings our custom packages from the 'pkgs' directory
additions = final: _prev: import ../packages { pkgs = final; };
# This one contains whatever you want to overlay
# You can change versions, add patches, set compilation flags, anything really.
# https://nixos.wiki/wiki/Overlays
modifications = final: prev: {
# example = prev.example.overrideAttrs (oldAttrs: rec {
# ...
# });
polybar = prev.polybar.override {
pulseSupport = true;
};
qutebrowser = prev.qutebrowser.override {
enableWideVine = true;
};
2023-07-12 00:31:04 +04:00
vimix-gtk-themes = prev.vimix-gtk-themes.override {
themeVariants = [ "ruby" ];
2023-07-12 00:31:04 +04:00
};
2023-07-20 02:19:11 +04:00
dwm = prev.dwm.overrideAttrs (old: {
2023-07-22 03:39:23 +04:00
src = ../config/dwm;
2023-07-20 02:19:11 +04:00
});
2023-07-08 20:00:13 +04:00
};
2023-08-06 03:07:15 +04:00
# lmao when did i add this
# for a few packages
# access through pkgs.unstable
2023-07-08 20:00:13 +04:00
unstable-packages = final: _prev: {
unstable = import inputs.nixpkgs-unstable {
system = final.system;
config.allowUnfree = true;
};
};
}