diff --git a/home-manager/default.nix b/home-manager/default.nix index 88a531f..29b03fc 100644 --- a/home-manager/default.nix +++ b/home-manager/default.nix @@ -1,4 +1,4 @@ -{ config, pkgs, lib, ... }: +{ config, lib, ... }: let home-manager = (import ../nix/sources.nix).home-manager; @@ -27,6 +27,7 @@ in modules/foot.nix modules/manual.nix modules/tig.nix + modules/mako.nix ../secrets/ssh-config.nix ] ++ lib.optionals (config.networking.hostName == "smithers") [ modules/kanshi.nix @@ -80,7 +81,6 @@ in swayidle brightnessctl wl-clipboard - mako sway-contrib.grimshot albert foot @@ -147,12 +147,6 @@ in userEmail = "mail@felixbreidenstein.de"; }; - services.mako = { - enable = true; - groupBy = "app-name"; - defaultTimeout = 5000; - }; - services.gammastep = { enable = true; tray = true; diff --git a/home-manager/modules/mako.nix b/home-manager/modules/mako.nix new file mode 100644 index 0000000..7bfcd94 --- /dev/null +++ b/home-manager/modules/mako.nix @@ -0,0 +1,14 @@ +{ + services.mako = { + enable = true; + groupBy = "app-name"; + defaultTimeout = 5000; + extraConfig = '' + font=Inconsolata 10 + background-color=#1d2021 + border-color=#ebdbb2 + border-radius=10 + text-color=#ebdbb2 + ''; + }; +}