diff options
Diffstat (limited to 'home-manager/wayland')
-rw-r--r-- | home-manager/wayland/home.nix | 1 | ||||
-rw-r--r-- | home-manager/wayland/modules/mako.nix | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/home-manager/wayland/home.nix b/home-manager/wayland/home.nix index 4c8c0e2..9e3f4ad 100644 --- a/home-manager/wayland/home.nix +++ b/home-manager/wayland/home.nix @@ -3,5 +3,6 @@ ../common/home.nix ./modules/foot.nix ./modules/zathura.nix + ./modules/mako.nix ]; } diff --git a/home-manager/wayland/modules/mako.nix b/home-manager/wayland/modules/mako.nix new file mode 100644 index 0000000..23bd1ff --- /dev/null +++ b/home-manager/wayland/modules/mako.nix @@ -0,0 +1,10 @@ +{ ... }: { + services.mako = { + enable = true; + defaultTimeout = 3000; + + borderSize = 2; + font = "Sans 13"; + backgroundColor = "#000000"; + }; +} |