14 lines
174 B
Nix
14 lines
174 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
dunst
|
|
libnotify
|
|
];
|
|
environment.etc = {
|
|
"xdg/dunst/dunstrc".source = ./config/dunstrc;
|
|
};
|
|
}
|