dotfiles/nixos/home-manager/modules/dunst/default.nix

12 lines
206 B
Nix
Raw Normal View History

{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom }:
{ config, lib, pkgs, ... }:
{
home.packages = with nixpkgs; [
dunst
];
home.file = {
".config/dunst/dunstrc".source = ./dunstrc;
};
}