use mako and improve starting characteristics

This commit is contained in:
Noa Aarts 2024-11-22 21:56:27 +01:00
parent df66b2b2f1
commit c03d0d2082
Signed by: noa
GPG key ID: 1850932741EFF672
4 changed files with 33 additions and 44 deletions

View file

@ -4,6 +4,5 @@
./waybar
./applications
./games
./dunst.nix
];
}

View file

@ -1,37 +0,0 @@
{
config,
lib,
pkgs,
inputs,
...
}:
let
cfg = config.modules.dunst;
in
{
options.modules.dunst = {
enable = lib.mkEnableOption "enable dunst for notifications";
};
config = lib.mkIf cfg.enable {
services.dunst = {
enable = true;
# settings = {
# global = {
# width = 300;
# height = 300;
# offset = "30x50";
# origin = "top-right";
# transparency = 10;
# frame_color = "#293929";
# font = "Droid Sans 9";
# };
#
# urgency_normal = {
# background = "#37474f";
# foreground = "#293929";
# timeout = 10;
# };
# };
};
};
}