overlays/picom: init

This commit is contained in:
LavaDesu 2021-12-09 11:15:35 +07:00
parent 6eba275d79
commit f8b2b091ef
Signed by: cilly
GPG key ID: 6500251E087653C9
2 changed files with 11 additions and 0 deletions

View file

@ -1,6 +1,7 @@
builtins.map (path: import path) [ builtins.map (path: import path) [
./discord.nix ./discord.nix
./material-icons.nix ./material-icons.nix
./picom.nix
./rofi.nix ./rofi.nix
./xinit.nix ./xinit.nix
] ]

10
overlays/picom.nix Normal file
View file

@ -0,0 +1,10 @@
self: super: {
picom = super.picom.overrideAttrs (old: {
src = super.fetchFromGitHub {
repo = "picom";
owner = "yshui";
rev = "31e58712ec11b198340ae217d33a73d8ac73b7fe";
sha256 = "1hg5jfpknbcv9scaghpy2nbrg9cxwm8mkh6znpgbbzr05g7ch6al";
};
});
}