summaryrefslogtreecommitdiff
path: root/nixos/modules/homelab/cloud
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-09-02 15:21:50 -0400
committertriethyl <triethylammonium@pm.me>2025-09-02 15:21:50 -0400
commita6f9533790b9bfb73f1e531fcef6303642e38983 (patch)
tree23ed9d5386175afd47023ded1f3bf8664ee53288 /nixos/modules/homelab/cloud
parentce6edbe1ce9eb9ac39a7072da8038831feb1f797 (diff)
homelab: started creating homelab
Diffstat (limited to 'nixos/modules/homelab/cloud')
-rw-r--r--nixos/modules/homelab/cloud/default.nix1
-rw-r--r--nixos/modules/homelab/cloud/syncthing.nix8
2 files changed, 9 insertions, 0 deletions
diff --git a/nixos/modules/homelab/cloud/default.nix b/nixos/modules/homelab/cloud/default.nix
new file mode 100644
index 0000000..d4ee9df
--- /dev/null
+++ b/nixos/modules/homelab/cloud/default.nix
@@ -0,0 +1 @@
+{config, pkgs, lib, ...}: {}
diff --git a/nixos/modules/homelab/cloud/syncthing.nix b/nixos/modules/homelab/cloud/syncthing.nix
new file mode 100644
index 0000000..993cf42
--- /dev/null
+++ b/nixos/modules/homelab/cloud/syncthing.nix
@@ -0,0 +1,8 @@
+{config, pkgs, lib, ...}: let
+ cfg = config.homelab.cloud.syncthing;
+in {
+ options.homelab.cloud.syncthing = {
+ enable = lib.mkEnableOption "syncthing";
+
+ };
+}