dotfiles/modules/services/dunst/default.nix

12 lines
234 B
Nix
Raw Normal View History

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