Files
nixos-dotfiles/modules/desktop/notify/dunst/default.nix
2025-04-13 15:09:14 +08:00

20 lines
293 B
Nix

{
config,
lib,
pkgs,
...
}:
lib.my.makeHomePackageConfig {
inherit config pkgs;
packageName = "dunst";
packagePath = [ "dunst" ];
optionPath = [
"desktop"
"notify"
"dunst"
];
extraConfig = {
my.home.xdg.configFile."dunst/dunstrc".source = ./dunstrc;
};
}