xmonad: added new layout+keybinds, removed useless code neovim: minor changes hosts/satori: changed kernel to zen again home/services and home/programs: minor changes overlays: changed picom src and other minor changes
60 lines
2.1 KiB
Nix
60 lines
2.1 KiB
Nix
final: prev: {
|
|
|
|
dmenu = prev.dmenu.overrideAttrs (oldAttrs: rec {
|
|
src = builtins.fetchTarball {
|
|
url = "https://dl.suckless.org/tools/dmenu-5.0.tar.gz";
|
|
sha256 = "0gjjbh49j85rpbmiqj236g4c1zb1h8xh41mcjsvnzgwn72893mk6";
|
|
};
|
|
patches = [./patches/dmenu.patch];
|
|
});
|
|
|
|
dwm = prev.dwm.overrideAttrs (oldAttrs: rec {
|
|
src = builtins.fetchTarball {
|
|
url = "https://dl.suckless.org/dwm/dwm-6.2.tar.gz";
|
|
sha256 = "0qdh8amfkjpvbwffar0byybcqi5w7v1wdqb39h75521haa6mh8xg";
|
|
};
|
|
patches = [./patches/dwm.patch];
|
|
});
|
|
|
|
st = prev.st.overrideAttrs (oldAttrs: rec {
|
|
src = builtins.fetchTarball {
|
|
url = "https://dl.suckless.org/st/st-0.8.4.tar.gz";
|
|
sha256 = "01z6i60fmdi5h6g80rgvqr6d00jxszphrldx07w4v6nq8cq2r4nr";
|
|
};
|
|
patches = [./patches/st.patch];
|
|
});
|
|
|
|
kbd = prev.kbd.overrideAttrs (oldAttrs: rec{
|
|
buildInputs = oldAttrs.buildInputs ++ [ prev.gzip ];
|
|
colemak-dh = prev.writeText "colemak-dh.map" (builtins.readFile ./colemak-dh.map);
|
|
postInstall = "${oldAttrs.postInstall}\n cp ${colemak-dh} $out/share/keymaps/i386/colemak/colemak-dh.map\n gzip $out/share/keymaps/i386/colemak/colemak-dh.map";
|
|
});
|
|
|
|
ncmpcpp = prev.ncmpcpp.override {
|
|
visualizerSupport = true;
|
|
clockSupport = true;
|
|
};
|
|
|
|
picom = prev.picom.overrideAttrs (oldAttrs: rec{
|
|
src = prev.fetchFromGitHub {
|
|
owner = "jonaburg";
|
|
repo = "picom";
|
|
rev = "a8445684fe18946604848efb73ace9457b29bf80";
|
|
sha256 = "sha256-R+YUGBrLst6CpUgG9VCwaZ+LiBSDWTp0TLt1Ou4xmpQ=";
|
|
fetchSubmodules = true;
|
|
};
|
|
});
|
|
discord = prev.discord.overrideAttrs (_ : {
|
|
src = builtins.fetchTarball { url = "https://discord.com/api/download/stable?platform=linux&format=tar.gz"; sha256="1ahj4bhdfd58jcqh54qcgafljqxl1747fqqwxhknqlasa83li75n";};
|
|
});
|
|
|
|
proxychains = prev.proxychains.overrideAttrs (_ : {
|
|
postInstall = ":";
|
|
});
|
|
|
|
/* tor-browser-bundle-bin = prev.tor-browser-bundle-bin.overrideAttrs (_ : {
|
|
src = builtins.fetchurl { url = "https://www.torproject.org/dist/torbrowser/10.5.2/tor-browser-linux64-10.5.2_en-US.tar.xz"; sha256="16zk7d0sxm2j00vb002mjj38wxcxxlahnfdb9lmkmkfms9p9xfkb";};
|
|
});*/
|
|
|
|
}
|