mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-25 15:51:54 -05:00
Aly Raffauf
ad0e824804
Some checks are pending
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
27 lines
446 B
Nix
27 lines
446 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
cfg = config.ar.home;
|
|
in {
|
|
config = lib.mkIf cfg.apps.fuzzel.enable {
|
|
programs.fuzzel = {
|
|
enable = true;
|
|
settings = {
|
|
border = {
|
|
radius = cfg.theme.borderRadius;
|
|
width = 4;
|
|
};
|
|
|
|
main = {
|
|
layer = "overlay";
|
|
lines = 3;
|
|
terminal = lib.getExe cfg.defaultApps.terminal;
|
|
width = 36;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|