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