dotfiles/modules/services/dunst/default.nix

17 lines
248 B
Nix

{ config, lib, pkgs, ... }:
let
base = {
xdg = {
enable = true;
configFile."dunt/dunstrc" = {
source = ./dunstrc;
};
};
services.dunst.enable = true;
};
in
{
home-manager.users.moritz = {...}: (base);
}