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