finished flake
This commit is contained in:
parent
d0522cb15c
commit
84f303eed6
21 changed files with 1540 additions and 149 deletions
16
modules/dunst/default.nix
Normal file
16
modules/dunst/default.nix
Normal 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);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue