mirror of
https://github.com/rad4day/Waybar.git
synced 2025-07-13 14:42:29 +02:00
14 lines
223 B
Nix
14 lines
223 B
Nix
{ lib
|
|
, waybar
|
|
, version
|
|
}:
|
|
|
|
waybar.overrideAttrs (prev: {
|
|
inherit version;
|
|
|
|
src = lib.cleanSourceWith {
|
|
filter = name: type: type != "regular" || !lib.hasSuffix ".nix" name;
|
|
src = lib.cleanSource ../.;
|
|
};
|
|
})
|