nixos/modules/desktop/dunst/default.nix

17 lines
279 B
Nix
Raw Normal View History

2023-07-12 07:06:18 +04:00
{ outputs, options, config, lib, pkgs, ...}:
with lib;
let
cfg = config.modules.desktop.dunst;
in
{
options.modules.desktop.dunst = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
dunst
];
};
}