Files
nixos-conf/home-manager/packages/twmn/twmn.nix
2025-09-17 09:36:13 -06:00

35 lines
534 B
Nix

{ config, pkgs, ... }:
{
services.twmn = {
enable = true;
icons = {
critical = "󰋮 ";
info = " ";
warning = " ";
};
text = {
color = "2b3339";
font = {
family = "Hack Nerd Font";
size = 11;
};
maxLength = 75;
};
window = {
position = "tc";
alwaysOnTop = true;
color = "#7fbbb3";
height = 30;
animation = {
easeIn = {
curve = 25;
duration = 750;
};
};
};
};
}