notification configured

This commit is contained in:
Semere Meharena Mebrahtom 2026-07-19 22:17:48 +02:00
parent 6f3c035316
commit e9bdc40a28
Signed by: semere
GPG key ID: 7FC937214DF30488
6 changed files with 106 additions and 29 deletions

32
modules/fnott.nix Normal file
View file

@ -0,0 +1,32 @@
{
config,
lib,
pkgs,
userVars,
...
}:
{
home-manager.users."${userVars.username}" = {
services.fnott = {
enable = true;
settings = {
main = {
title-font = "JetBrainsMono Nerd Font:size=11";
summary-font = "JetBrainsMono Nerd Font:size=11";
body-font = "JetBrainsMono Nerd Font:size=11";
background = "1a1a24e0";
border-color = "b085f5ff";
border-size = 2;
min-width = 450;
progress-bar-height = 14;
progress-color = "b085f5cc";
padding-vertical = 12;
padding-horizontal = 16;
summary-color = "ffffffff";
body-color = "e0e0e0ff";
};
};
};
};
}