system/home/modules/notifications/default.nix

10 lines
194 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
2022-10-12 01:41:32 +03:00
let themeCfg = config.local.theme; in
2022-10-12 01:41:32 +03:00
{
services.wired = {
enable = true;
config = pkgs.substituteAll ({ src = ./wired.ron; } // themeCfg.notification);
2022-10-12 01:41:32 +03:00
};
}