11 lines
226 B
Nix
11 lines
226 B
Nix
{ config, pkgs, ... }:
|
|
|
|
let
|
|
themeCfg = config.local.themes."${config.local.theme.name}";
|
|
in
|
|
{
|
|
services.wired = {
|
|
enable = true;
|
|
config = pkgs.substituteAll ({ src = ./wired.ron; } // themeCfg.notification);
|
|
};
|
|
}
|