aboutsummaryrefslogtreecommitdiff
path: root/home/profiles/mako.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-05-05 19:41:58 -0700
committerFranck Cuny <franck@fcuny.net>2023-05-05 19:41:58 -0700
commit43da9edb4598eef509c481ae0b305384418c45de (patch)
treea0ad614c90102757143e026e4fe1806431a3dbf4 /home/profiles/mako.nix
parentprofiles/default: users are immutable (diff)
downloadinfra-43da9edb4598eef509c481ae0b305384418c45de.tar.gz
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.
Diffstat (limited to '')
-rw-r--r--home/profiles/mako.nix25
1 files changed, 25 insertions, 0 deletions
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";
+ };
+}