nixos/overlays/default.nix

49 lines
1.8 KiB
Nix
Raw Normal View History

2024-10-09 21:00:23 +04:00
{ inputs, ... }: {
2023-07-08 20:00:13 +04:00
# This one brings our custom packages from the 'pkgs' directory
2024-10-09 21:00:23 +04:00
additions = final: _prev: import ../packages { pkgs = final; };
2023-07-08 20:00:13 +04:00
2024-10-09 21:00:23 +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 {
# ...
# });
2024-10-09 21:00:23 +04:00
polybar = prev.polybar.override { pulseSupport = true; };
qutebrowser = prev.qutebrowser.override { enableWideVine = true; };
vimix-gtk-themes =
prev.vimix-gtk-themes.override { themeVariants = [ "ruby" ]; };
2024-09-05 07:26:06 +04:00
fluent-gtk-theme = prev.fluent-gtk-theme.override {
colorVariants = [ "dark" ];
2024-10-15 11:47:14 +04:00
themeVariants = [ "pink" ];
2024-09-05 07:26:06 +04:00
tweaks = [ "square" ];
};
2024-10-09 21:00:23 +04:00
fluent-icon-theme =
2024-10-15 11:57:42 +04:00
prev.fluent-icon-theme.override { colorVariants = [ "pink" ]; };
2024-10-09 21:00:23 +04:00
dwm = prev.dwm.overrideAttrs (old: { src = ../config/dwm; });
2024-08-04 20:37:31 +04:00
ags = prev.ags.overrideAttrs (old: {
2024-10-09 21:00:23 +04:00
buildInputs = old.buildInputs
++ [ inputs.nixpkgs.legacyPackages.x86_64-linux.libdbusmenu-gtk3 ];
2024-08-05 23:27:55 +04:00
});
2024-10-09 21:00:23 +04:00
isync = prev.isync.overrideAttrs (old: { withCyrusSaslXoauth2 = true; });
localsend = prev.localsend.overrideAttrs (old: {
# can't see window fix
# https://github.com/NixOS/nixpkgs/commit/98a18e8bd005f6003686ca26e8223c8761b2322d
postUnpack = ''
substituteInPlace $sourceRoot/linux/my_application.cc \
--replace-fail "gtk_widget_realize(GTK_WIDGET(window))" "gtk_widget_show(GTK_WIDGET(window))"
'';
});
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;
};
};
}