forked from aylac.top/nixcfg
this repo has no description
1{ 2 config, 3 lib, 4 ... 5}: let 6 name = "atproto-basic-notifications"; 7 cfg = config.myNixOS.services.${name}; 8in { 9 options.myNixOS.services.${name} = { 10 enable = lib.mkEnableOption "${name}"; 11 }; 12 13 config = lib.mkIf cfg.enable { 14 services.atproto-basic-notifications = { 15 enable = true; 16 environmentFiles = [config.age.secrets.atp-notif.path]; 17 settings = { 18 TARGET_DID = "did:plc:3c6vkaq7xf5kz3va3muptjh5"; 19 }; 20 }; 21 }; 22}