mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
17 lines
368 B
Nix
17 lines
368 B
Nix
{ lib, config, ... }:
|
|
{
|
|
options.swarselmodules.fuzzel = lib.mkEnableOption "fuzzel settings";
|
|
config = lib.mkIf config.swarselmodules.fuzzel {
|
|
programs.fuzzel = {
|
|
enable = true;
|
|
settings = {
|
|
main = {
|
|
layer = "overlay";
|
|
lines = "10";
|
|
width = "40";
|
|
};
|
|
border.radius = "0";
|
|
};
|
|
};
|
|
};
|
|
}
|