mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 02:53:55 -05:00
mako: use theme module
mako: fix build error by converting int to str with toString
This commit is contained in:
parent
6b2bab0294
commit
1ea8e6fcba
|
@ -7,20 +7,18 @@
|
|||
options = {alyraffauf.apps.mako.enable = lib.mkEnableOption "Enables mako.";};
|
||||
|
||||
config = lib.mkIf config.alyraffauf.apps.mako.enable {
|
||||
home.packages = with pkgs; [(nerdfonts.override {fonts = ["Noto"];})];
|
||||
|
||||
services.mako = {
|
||||
enable = true;
|
||||
anchor = "top-center";
|
||||
backgroundColor = "#232634CC";
|
||||
borderColor = "#ca9ee6";
|
||||
backgroundColor = "${config.alyraffauf.desktop.theme.colors.background}CC";
|
||||
borderColor = "${config.alyraffauf.desktop.theme.colors.primary}";
|
||||
borderRadius = 10;
|
||||
defaultTimeout = 10000;
|
||||
font = "NotoSans Nerd Font Regular 10";
|
||||
font = "${config.alyraffauf.desktop.theme.font.name} Regular ${toString config.alyraffauf.desktop.theme.font.size}";
|
||||
height = 300;
|
||||
layer = "top";
|
||||
padding = "15";
|
||||
textColor = "#FAFAFA";
|
||||
textColor = "${config.alyraffauf.desktop.theme.colors.text}";
|
||||
width = 400;
|
||||
margin = "20,0";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue