refactor: move services out of systems/tewi/

This commit is contained in:
arcnmx 2024-01-09 13:12:55 -08:00
parent 2f68968238
commit 5a661e8809
30 changed files with 992 additions and 638 deletions

5
nixos/cloudflared.nix Normal file
View file

@ -0,0 +1,5 @@
{ config, lib, ... }: let
inherit (lib.modules) mkDefault;
in {
config.services.cloudflared.enable = mkDefault true;
}