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); }
|