2022-10-28 15:26:00 +03:00
|
|
|
{ config, pkgs, ... }:
|
2022-10-12 01:41:32 +03:00
|
|
|
|
2024-04-16 02:51:46 +03:00
|
|
|
let
|
|
|
|
themeCfg = config.local.themes."${config.local.theme.name}";
|
|
|
|
in
|
2022-10-12 01:41:32 +03:00
|
|
|
{
|
|
|
|
services.wired = {
|
|
|
|
enable = true;
|
2022-10-28 15:26:00 +03:00
|
|
|
config = pkgs.substituteAll ({ src = ./wired.ron; } // themeCfg.notification);
|
2022-10-12 01:41:32 +03:00
|
|
|
};
|
|
|
|
}
|