nixos/overlays/default.nix

37 lines
1.1 KiB
Nix
Raw Normal View History

2023-07-08 20:00:13 +04:00
{ inputs, ...}:
{
# 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-15 19:02:32 +04:00
catppuccin-cursors = prev.catppuccin-cursors.override {
palette = [ "Mocha" ];
color = [ "Dark" ];
};
2023-07-08 20:00:13 +04:00
};
# When applied, the unstable nixpkgs set (declared in the flake inputs) will
# be accessible through 'pkgs.unstable'
unstable-packages = final: _prev: {
unstable = import inputs.nixpkgs-unstable {
system = final.system;
config.allowUnfree = true;
};
};
}