dotfiles/modules/services/dunst/default.nix

17 lines
250 B
Nix
Raw Normal View History

2021-09-09 21:55:28 +02:00
{ config, lib, pkgs, ... }:
let
base = {
xdg = {
enable = true;
configFile."dunt/dunstrc" = {
source = ./dunstrc;
};
};
services.dunst.enable = true;
};
in
{
2021-09-15 00:41:46 +02:00
home-manager.users.moritz = { ... }: (base);
2021-09-09 21:55:28 +02:00
}