finished flake

This commit is contained in:
Moritz Böhme 2021-09-09 21:55:28 +02:00
parent d0522cb15c
commit 84f303eed6
21 changed files with 1540 additions and 149 deletions

16
modules/dunst/default.nix Normal file
View file

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