fuzzel.nix: fix settings, conform to INI file format
This commit is contained in:
parent
dc9321fe01
commit
59310fd227
1 changed files with 9 additions and 6 deletions
|
@ -2,6 +2,7 @@
|
||||||
config,
|
config,
|
||||||
lib,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
|
...
|
||||||
}: let
|
}: let
|
||||||
inherit (lib) mkIf;
|
inherit (lib) mkIf;
|
||||||
inherit (config.modules.other.system) username;
|
inherit (config.modules.other.system) username;
|
||||||
|
@ -13,12 +14,14 @@ in {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.fuzzel;
|
package = pkgs.fuzzel;
|
||||||
settings = {
|
settings = {
|
||||||
icon-theme = "Papirus-Dark";
|
main = {
|
||||||
font = "ComicShannsMono:weight=bold:size=36";
|
terminal = "${pkgs.foot}/bin/foot -e";
|
||||||
terminal = "foot -e";
|
|
||||||
# make fuzzel appear on fullscreen windows
|
# make fuzzel appear on fullscreen windows
|
||||||
layer = "overlay";
|
layer = "overlay";
|
||||||
background = "000000";
|
icon-theme = "Papirus-Dark";
|
||||||
|
font = "ComicShannsMono:weight=regular:size=14";
|
||||||
|
};
|
||||||
|
# background = "000000";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue