16 lines
236 B
Nix
16 lines
236 B
Nix
{ modules, ... }:
|
|
{
|
|
modules.dunst = {
|
|
homeManager = {
|
|
services.dunst = {
|
|
enable = true;
|
|
settings = {
|
|
global = {
|
|
font = "Noto Nerd Font 8";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|