From 43da9edb4598eef509c481ae0b305384418c45de Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Fri, 5 May 2023 19:41:58 -0700 Subject: home/profiles: move (almost) all modules to profiles This is a major refactor, similar to what was done for the hosts, but in a single commit. --- home/profiles/mako.nix | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 home/profiles/mako.nix (limited to 'home/profiles/mako.nix') diff --git a/home/profiles/mako.nix b/home/profiles/mako.nix new file mode 100644 index 0000000..d4e54fe --- /dev/null +++ b/home/profiles/mako.nix @@ -0,0 +1,25 @@ +{ config, lib, pkgs, ... }: +{ + home.packages = [ + pkgs.libnotify + ]; + + # All the options are documented via `man 5 mako` + services.mako = { + enable = true; + font = "Source Code Pro"; + backgroundColor = "#000021DD"; + textColor = "#FFFFFFFF"; + borderSize = 0; + borderRadius = 15; + icons = true; + iconPath = "${pkgs.moka-icon-theme}/share/icons/Moka"; + markup = true; + actions = true; + defaultTimeout = 3000; + padding = "20"; + height = 200; + width = 500; + layer = "overlay"; + }; +} -- cgit 1.4.1