dotfiles/modules/dunst/default.nix

17 lines
248 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
{
home-manager.users.moritz = {...}: (base);
}