flake: update & cleanup

This commit is contained in:
chayleaf
2023-12-02 01:10:19 +07:00
parent 1572bc8c75
commit 2e2cb67cf1
4 changed files with 37 additions and 154 deletions

View File

@ -5,16 +5,9 @@
waybar.overrideAttrs (prev: {
inherit version;
# version = "0.9.17";
src = lib.cleanSourceWith {
filter = name: type:
let
baseName = baseNameOf (toString name);
in
! (
lib.hasSuffix ".nix" baseName
);
filter = name: type: type != "regular" || !lib.hasSuffix ".nix" name;
src = lib.cleanSource ../.;
};
})