Price Hiller
02334f5601
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m14s
17 lines
535 B
Nix
17 lines
535 B
Nix
{ inputs, ... }:
|
|
{
|
|
additions = final: _prev: import ../pkgs { pkgs = final; };
|
|
|
|
modifications = final: prev: {
|
|
waybar = inputs.waybar.packages.${final.system}.default;
|
|
lxappearance = prev.lxappearance.overrideAttrs (oldAttrs: {
|
|
postInstall = ''
|
|
wrapProgram $out/bin/lxappearance --prefix GDK_BACKEND : x11
|
|
'';
|
|
});
|
|
opensnitch-ui = prev.opensnitch-ui.overrideAttrs (oldAttrs: {
|
|
propagatedBuildInputs = oldAttrs.propagatedBuildInputs ++ [ prev.python311Packages.qt-material ];
|
|
});
|
|
};
|
|
}
|