summaryrefslogtreecommitdiff
path: root/modules/apps/mako.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/apps/mako.nix')
-rw-r--r--modules/apps/mako.nix35
1 files changed, 0 insertions, 35 deletions
diff --git a/modules/apps/mako.nix b/modules/apps/mako.nix
deleted file mode 100644
index 62e5712..0000000
--- a/modules/apps/mako.nix
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- config,
- lib,
- ...
-}: let
- inherit (lib) mkIf;
- cfg = config.apps;
-in {
- config = mkIf cfg.mako {
- home-manager.users.${config.user} = {
- services.mako = {
- enable = false; # now using astal
-
- settings = {
- font = "${config.theme.font.monospace} 11";
-
- margin = toString config.theme.outerGap;
- padding = toString config.theme.innerGap;
-
- background-color = "#${config.theme.colors.base}";
- progress-color = "#${config.theme.colors.primary}";
- text-color = "#${config.theme.colors.text}";
-
- border-color = "#${config.theme.colors.text}";
- border-size = config.theme.borderWidth;
- border-radius = config.theme.outerRadius;
-
- default-timeout = 5000;
- layer = "overlay";
- icons = true;
- };
- };
- };
- };
-}