diff options
Diffstat (limited to 'modules/programs/mako/default.nix')
-rw-r--r-- | modules/programs/mako/default.nix | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/modules/programs/mako/default.nix b/modules/programs/mako/default.nix deleted file mode 100644 index 6a518ca..0000000 --- a/modules/programs/mako/default.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ config, lib, ... }: - -{ - config = lib.mkIf config.desktop.enable { - - home-manager.users.${config.user} = { - services.mako = { - - enable = true; - - font = "${config.theme.font} 11"; - - margin = toString config.theme.outerGap; - padding = toString config.theme.innerGap; - - backgroundColor = "#${config.theme.colors.base00}"; - progressColor = "#${config.theme.colors.base00}"; - textColor = "#${config.theme.colors.base05}"; - - borderColor = "#${config.theme.colors.base05}"; - borderSize = config.theme.borderWidth; - borderRadius = config.theme.outerRadius; - - defaultTimeout = 5000; - layer = "overlay"; - icons = true; - - }; - }; - - }; -} |