mirror of
https://github.com/librephoenix/nixos-config
synced 2025-04-21 01:34:34 +05:30
Got my first overlay working!
This commit is contained in:
parent
b2c513c01b
commit
9d3338a0b9
|
@ -286,7 +286,7 @@ in
|
||||||
|
|
||||||
# Compositor and Desktop Utils
|
# Compositor and Desktop Utils
|
||||||
nitrogen
|
nitrogen
|
||||||
picom-jonaburg
|
picom
|
||||||
alttab
|
alttab
|
||||||
xwinwrap
|
xwinwrap
|
||||||
xorg.xcursorthemes
|
xorg.xcursorthemes
|
||||||
|
@ -308,8 +308,6 @@ in
|
||||||
glfw-wayland
|
glfw-wayland
|
||||||
swayidle
|
swayidle
|
||||||
swaylock
|
swaylock
|
||||||
grim
|
|
||||||
slurp
|
|
||||||
wlsunset
|
wlsunset
|
||||||
wayshot
|
wayshot
|
||||||
wev
|
wev
|
||||||
|
@ -363,6 +361,27 @@ in
|
||||||
shellAliases = myAliases;
|
shellAliases = myAliases;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nixpkgs.overlays = [
|
||||||
|
(self: super:
|
||||||
|
{
|
||||||
|
picom = super.picom.overrideAttrs (oldAttrs: rec {
|
||||||
|
version = "unstable-2021-10-23";
|
||||||
|
src = super.fetchFromGitHub {
|
||||||
|
owner = "pijulius";
|
||||||
|
repo = "picom";
|
||||||
|
rev = "982bb43e5d4116f1a37a0bde01c9bda0b88705b9";
|
||||||
|
sha256 = "sha256-YiuLScDV9UfgI1MiYRtjgRkJ0VuA1TExATA2nJSJMhM=";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with builtins.lib; {
|
||||||
|
description = "A fork of picom featuring better animations";
|
||||||
|
homepage = "https://github.com/pijulius/picom";
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
|
)
|
||||||
|
];
|
||||||
|
|
||||||
home.file.".librewolf/librewolf.overrides.cfg".text = ''
|
home.file.".librewolf/librewolf.overrides.cfg".text = ''
|
||||||
pref("font.name.serif.x-western","Inconsolata");
|
pref("font.name.serif.x-western","Inconsolata");
|
||||||
pref("font.size.variable.x-western",20);
|
pref("font.size.variable.x-western",20);
|
||||||
|
|
Loading…
Reference in a new issue