From fb061f555f821fe4fb49f8f6f2a0cc3d5728bd52 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Sun, 11 May 2025 22:27:24 -0500 Subject: [PATCH] misc: add news entries for March modules Add detailed news entries for the following modules: - services.skhd (macOS hotkey daemon) - Darwin-only - services.jankyborders (macOS window borders) - Darwin-only - programs.distrobox (container manager) - Linux-only --- modules/misc/news/2025-03-21_03-19-14.nix | 15 +++++++++++++++ modules/misc/news/2025-03-22_03-18-58.nix | 14 ++++++++++++++ modules/misc/news/2025-03-22_03-19-06.nix | 14 ++++++++++++++ 3 files changed, 43 insertions(+) create mode 100644 modules/misc/news/2025-03-21_03-19-14.nix create mode 100644 modules/misc/news/2025-03-22_03-18-58.nix create mode 100644 modules/misc/news/2025-03-22_03-19-06.nix diff --git a/modules/misc/news/2025-03-21_03-19-14.nix b/modules/misc/news/2025-03-21_03-19-14.nix new file mode 100644 index 00000000..23ee5efb --- /dev/null +++ b/modules/misc/news/2025-03-21_03-19-14.nix @@ -0,0 +1,15 @@ +{ pkgs, ... }: + +{ + time = "2025-03-21T03:19:14+00:00"; + condition = pkgs.stdenv.hostPlatform.isLinux; + message = '' + A new module is available: 'programs.distrobox'. + + Distrobox is a tool that uses podman or docker to create containers using + the Linux distribution of your choice. It allows you to use the package + manager of other distributions to install applications that aren't available + in NixOS, and integrates those applications with your host system. The module + enables configuration of container definitions and distrobox settings. + ''; +} diff --git a/modules/misc/news/2025-03-22_03-18-58.nix b/modules/misc/news/2025-03-22_03-18-58.nix new file mode 100644 index 00000000..49bcb761 --- /dev/null +++ b/modules/misc/news/2025-03-22_03-18-58.nix @@ -0,0 +1,14 @@ +{ pkgs, ... }: + +{ + time = "2025-03-22T03:18:58+00:00"; + condition = pkgs.stdenv.hostPlatform.isDarwin; + message = '' + A new module is available: 'services.skhd'. + + Simple Hotkey Daemon (skhd) is a simple macOS hotkey daemon that allows + defining system-wide keyboard shortcuts for launching applications and + shell commands. The module enables configuration of key combinations, modifiers, + and associated actions, and integrates well with window managers like yabai. + ''; +} diff --git a/modules/misc/news/2025-03-22_03-19-06.nix b/modules/misc/news/2025-03-22_03-19-06.nix new file mode 100644 index 00000000..e08f442b --- /dev/null +++ b/modules/misc/news/2025-03-22_03-19-06.nix @@ -0,0 +1,14 @@ +{ pkgs, ... }: + +{ + time = "2025-03-22T03:19:06+00:00"; + condition = pkgs.stdenv.hostPlatform.isDarwin; + message = '' + A new module is available: 'services.jankyborders'. + + JankyBorders adds customizable borders to macOS application windows. It provides + features like adjustable border width, color, radius, and window title display. + This module is particularly useful for improving window visibility when using a + tiling window manager on macOS. + ''; +}