major refactor and reorg

This commit is contained in:
Matt Nish-Lapidus 2025-02-04 20:58:42 -05:00
parent 4da9b4919e
commit 0a9342ea3e
4 changed files with 46 additions and 27 deletions

10
overlays/ulauncher.nix Normal file
View file

@ -0,0 +1,10 @@
final: prev: {
ulauncher = prev.ulauncher.overrideAttrs (old: {
propagatedBuildInputs = with prev.python3Packages;
old.propagatedBuildInputs
++ [
thefuzz
tornado
];
});
}