diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-05-16 20:38:12 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-05-16 20:38:12 +0200 |
commit | 3a20ab5bcfe5686c310830272cd013de7e829951 (patch) | |
tree | db9c28710b6c9b22d82e7554cfe8d798c5ad256a /modules/home.legacy | |
parent | pkgs/fupdate-flake: Actually pass arguments to the update script (diff) | |
download | nixos-config-3a20ab5bcfe5686c310830272cd013de7e829951.zip |
modules/legacy/mako: Migrate to `by-name`
Diffstat (limited to '')
-rw-r--r-- | modules/home.legacy/conf/default.nix | 1 | ||||
-rw-r--r-- | modules/home.legacy/conf/mako/default.nix | 49 |
2 files changed, 0 insertions, 50 deletions
diff --git a/modules/home.legacy/conf/default.nix b/modules/home.legacy/conf/default.nix index 22bf50b6..622f32d5 100644 --- a/modules/home.legacy/conf/default.nix +++ b/modules/home.legacy/conf/default.nix @@ -21,7 +21,6 @@ ./keepassxc ./latexindent ./mail - ./mako ./mbsync ./mumble ./neomutt diff --git a/modules/home.legacy/conf/mako/default.nix b/modules/home.legacy/conf/mako/default.nix deleted file mode 100644 index 60400987..00000000 --- a/modules/home.legacy/conf/mako/default.nix +++ /dev/null @@ -1,49 +0,0 @@ -# nixos-config - My current NixOS configuration -# -# Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de> -# SPDX-License-Identifier: GPL-3.0-or-later -# -# This file is part of my nixos-config. -# -# You should have received a copy of the License along with this program. -# If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>. -{...}: { - services.mako = { - enable = true; - backgroundColor = "#2e3440"; - borderColor = "#88c0d0"; - borderRadius = 25; - borderSize = 2; - defaultTimeout = 5000; - font = "Source Code Pro 10"; - width = 500; - height = 500; - icons = true; - ignoreTimeout = true; - layer = "overlay"; - markup = true; # TODO: - maxIconSize = 64; - sort = "-time"; - extraConfig = '' - [urgency=low] - border-color=#cccccc - - [urgency=normal] - border-color=#d08770 - - [urgency=high] - border-size=3 - border-color=#bf616a - default-timeout=0 - - [urgency=critical] - border-size=4 - border-color=#bf616a - default-timeout=0 - - [category=mpd] - default-timeout=2000 - group-by=category - ''; - }; -} |