1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-03 15:41:02 +01:00
home-manager/tests/modules/services/dunst/default.nix
2025-09-11 10:15:27 +02:00

6 lines
172 B
Nix

{ lib, pkgs, ... }:
lib.optionalAttrs pkgs.stdenv.hostPlatform.isLinux {
dunst-with-settings = ./with-settings.nix;
dunst-without-settings = ./without-settings.nix;
}