nixos/overlays/default.nix

39 lines
1 KiB
Nix
Raw Normal View History

2024-02-06 08:55:30 +04:00
{inputs, ...}: {
2023-07-08 20:00:13 +04:00
# This one brings our custom packages from the 'pkgs' directory
2023-08-06 23:17:51 +04:00
additions = final: _prev: import ../packages {pkgs = final;};
2023-07-08 20:00:13 +04:00
2023-12-25 01:35:40 +04:00
nixpkgs.overlays = [
inputs.emacs-overlay
];
2023-07-08 20:00:13 +04:00
# 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 {
2023-08-06 23:17:51 +04:00
themeVariants = ["ruby"];
2023-07-12 00:31:04 +04:00
};
2023-07-20 02:19:11 +04:00
dwm = prev.dwm.overrideAttrs (old: {
2023-08-06 23:17:51 +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;
};
};
}