nixos/overlays/default.nix

52 lines
1.5 KiB
Nix
Raw Normal View History

2023-08-06 23:17:51 +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
});
2024-02-05 13:36:53 +04:00
# todo remove this on next flake update
# nvidia-x11 = prev.nvidia-x11.overrideAttrs (old: {
# patches =
# (old.patches or [])
# ++ [
# (prev.fetchpatch {
# url = "https://github.com/gentoo/gentoo/raw/c64caf53/x11-drivers/nvidia-drivers/files/nvidia-drivers-470.223.02-gpl-pfn_valid.patch";
# hash = "sha256-eZiQQp2S/asE7MfGvfe6dA/kdCvek9SYa/FFGp24dVg=";
# })
# ];
# });
# todo remove this on next flake update
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;
};
};
}