fuzzel.nix: add settings
This commit is contained in:
parent
59778c7c43
commit
dc9321fe01
4 changed files with 31 additions and 1 deletions
26
modules/programs/launchers/fuzzel.nix
Normal file
26
modules/programs/launchers/fuzzel.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
}: let
|
||||
inherit (lib) mkIf;
|
||||
inherit (config.modules.other.system) username;
|
||||
cfg = config.modules.usrEnv.programs.launchers.fuzzel;
|
||||
in {
|
||||
config = mkIf cfg.enable {
|
||||
home-manager.users.${username} = {
|
||||
programs.fuzzel = {
|
||||
enable = true;
|
||||
package = pkgs.fuzzel;
|
||||
settings = {
|
||||
icon-theme = "Papirus-Dark";
|
||||
font = "ComicShannsMono:weight=bold:size=36";
|
||||
terminal = "foot -e";
|
||||
# make fuzzel appear on fullscreen windows
|
||||
layer = "overlay";
|
||||
background = "000000";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue