nixos/overlays/default.nix

55 lines
1.7 KiB
Nix
Raw Normal View History

2024-09-07 15:41:36 +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
};
2024-09-05 07:26:06 +04:00
fluent-gtk-theme = prev.fluent-gtk-theme.override {
colorVariants = [ "dark" ];
themeVariants = [ "red" ];
tweaks = [ "square" ];
};
2024-09-05 09:52:46 +04:00
fluent-icon-theme = prev.fluent-icon-theme.override {
colorVariants = [ "red" ];
};
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-08-04 20:37:31 +04:00
ags = prev.ags.overrideAttrs (old: {
2024-08-04 20:43:43 +04:00
buildInputs = old.buildInputs ++ [ inputs.nixpkgs.legacyPackages.x86_64-linux.libdbusmenu-gtk3 ];
2024-08-04 20:37:31 +04:00
});
2024-08-05 23:27:55 +04:00
isync = prev.isync.overrideAttrs (old: {
withCyrusSaslXoauth2 = true;
});
2024-09-25 22:09:09 +04:00
# blender = prev.blender.overrideAttrs (old: {
# nativeBuildInputs = (old.nativeBuildInputs or []) ++ [ inputs.nixpkgs.legacyPackages.x86_64-linux.pkg-config inputs.nixpkgs.legacyPackages.x86_64-linux.wayland-scanner ];
# });
2023-07-08 20:00:13 +04:00
};
2024-08-21 18:50:21 +04:00
# incase something breaks
# access through pkgs.stable
stable-packages = final: _prev: {
stable = import inputs.nixpkgs-stable {
2023-07-08 20:00:13 +04:00
system = final.system;
config.allowUnfree = true;
};
};
}