This commit is contained in:
Lucy von Overheidt 2025-09-09 18:16:30 +02:00
parent e1bec20b9c
commit 3ca0368824
3 changed files with 14 additions and 0 deletions

10
modules/fuzzel.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs, lib, ... }:
{
programs.fuzzel.settings = {
main = {
terminal = lib.getExe pkgs.alacritty;
layer = "overlay";
};
colors.background = "ffffffff";
};
}