nixfmt
This commit is contained in:
parent
9750b11eba
commit
ad5c906e4b
1 changed files with 13 additions and 27 deletions
|
@ -1,10 +1,8 @@
|
||||||
{inputs, ...}: {
|
{ inputs, ... }: {
|
||||||
# This one brings our custom packages from the 'pkgs' directory
|
# This one brings our custom packages from the 'pkgs' directory
|
||||||
additions = final: _prev: import ../packages {pkgs = final;};
|
additions = final: _prev: import ../packages { pkgs = final; };
|
||||||
|
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [ inputs.emacs-overlay ];
|
||||||
inputs.emacs-overlay
|
|
||||||
];
|
|
||||||
# This one contains whatever you want to overlay
|
# This one contains whatever you want to overlay
|
||||||
# You can change versions, add patches, set compilation flags, anything really.
|
# You can change versions, add patches, set compilation flags, anything really.
|
||||||
# https://nixos.wiki/wiki/Overlays
|
# https://nixos.wiki/wiki/Overlays
|
||||||
|
@ -12,35 +10,23 @@
|
||||||
# example = prev.example.overrideAttrs (oldAttrs: rec {
|
# example = prev.example.overrideAttrs (oldAttrs: rec {
|
||||||
# ...
|
# ...
|
||||||
# });
|
# });
|
||||||
polybar = prev.polybar.override {
|
polybar = prev.polybar.override { pulseSupport = true; };
|
||||||
pulseSupport = true;
|
qutebrowser = prev.qutebrowser.override { enableWideVine = true; };
|
||||||
};
|
vimix-gtk-themes =
|
||||||
qutebrowser = prev.qutebrowser.override {
|
prev.vimix-gtk-themes.override { themeVariants = [ "ruby" ]; };
|
||||||
enableWideVine = true;
|
|
||||||
};
|
|
||||||
vimix-gtk-themes = prev.vimix-gtk-themes.override {
|
|
||||||
themeVariants = ["ruby"];
|
|
||||||
};
|
|
||||||
fluent-gtk-theme = prev.fluent-gtk-theme.override {
|
fluent-gtk-theme = prev.fluent-gtk-theme.override {
|
||||||
colorVariants = [ "dark" ];
|
colorVariants = [ "dark" ];
|
||||||
themeVariants = [ "red" ];
|
themeVariants = [ "red" ];
|
||||||
tweaks = [ "square" ];
|
tweaks = [ "square" ];
|
||||||
};
|
};
|
||||||
fluent-icon-theme = prev.fluent-icon-theme.override {
|
fluent-icon-theme =
|
||||||
colorVariants = [ "red" ];
|
prev.fluent-icon-theme.override { colorVariants = [ "red" ]; };
|
||||||
};
|
dwm = prev.dwm.overrideAttrs (old: { src = ../config/dwm; });
|
||||||
dwm = prev.dwm.overrideAttrs (old: {
|
|
||||||
src = ../config/dwm;
|
|
||||||
});
|
|
||||||
ags = prev.ags.overrideAttrs (old: {
|
ags = prev.ags.overrideAttrs (old: {
|
||||||
buildInputs = old.buildInputs ++ [ inputs.nixpkgs.legacyPackages.x86_64-linux.libdbusmenu-gtk3 ];
|
buildInputs = old.buildInputs
|
||||||
|
++ [ inputs.nixpkgs.legacyPackages.x86_64-linux.libdbusmenu-gtk3 ];
|
||||||
});
|
});
|
||||||
isync = prev.isync.overrideAttrs (old: {
|
isync = prev.isync.overrideAttrs (old: { withCyrusSaslXoauth2 = true; });
|
||||||
withCyrusSaslXoauth2 = true;
|
|
||||||
});
|
|
||||||
# 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 ];
|
|
||||||
# });
|
|
||||||
};
|
};
|
||||||
|
|
||||||
# incase something breaks
|
# incase something breaks
|
||||||
|
|
Loading…
Reference in a new issue