diff options
Diffstat (limited to 'programs/mako/default.nix')
-rw-r--r-- | programs/mako/default.nix | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/programs/mako/default.nix b/programs/mako/default.nix deleted file mode 100644 index 94b0cd9..0000000 --- a/programs/mako/default.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ - config, - lib, - ... -}: { - 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.bg}"; - progress-color = "#${config.theme.colors.primary}"; - text-color = "#${config.theme.colors.fg}"; - - border-color = "#${config.theme.colors.fg}"; - border-size = config.theme.borderWidth; - border-radius = config.theme.outerRadius; - - default-timeout = 5000; - layer = "overlay"; - icons = true; - }; - }; - }; -} |