system/home/modules/notifications/default.nix

10 lines
194 B
Nix

{ config, pkgs, ... }:
let themeCfg = config.local.theme; in
{
services.wired = {
enable = true;
config = pkgs.substituteAll ({ src = ./wired.ron; } // themeCfg.notification);
};
}