This commit is contained in:
2024-05-10 14:52:56 +02:00
parent e5cd70ffa5
commit f02953fe05
19 changed files with 632 additions and 13 deletions

View File

@@ -0,0 +1,9 @@
{ pkgs, config, ... }:
{
home.packages = with pkgs; [ dunst ];
xdg.configFile."dunst/dunstrc" = {
recursive = true;
source = ./dunstrc;
};
}