restructure system to be toggable

This commit is contained in:
2025-10-04 11:46:34 -05:00
parent 464ecdc6ca
commit 8b4d73b2e3
6 changed files with 85 additions and 47 deletions

View File

@@ -5,20 +5,30 @@
[ # Include the results of the hardware scan.
./hardware-configuration.nix
../../users/blake/blake.nix
../../modules/system/ssh.nix
../../modules/system/docker.nix
../../modules/system/syncthing.nix
../../modules/system/tailscale.nix
../../modules/system/system.nix
# ../../modules/system/ssh.nix
# ../../modules/system/docker.nix
# ../../modules/system/syncthing.nix
# ../../modules/system/tailscale.nix
../../modules/homelab/homelab.nix
# ../../modules/homelab/zfs.nix
# ../../modules/homelab/smb.nix
# ../../modules/homelab/nfs.nix
];
modules.homelab = {
zfs.enable = true;
smb.enable = false;
nfs.enable = true;
modules = {
system = {
ssh.enable = true;
docker.enable = true;
syncthing.enable = true;
tailscale.enable = true;
#nvidia.enable = true;
};
homelab = {
zfs.enable = true;
smb.enable = true;
nfs.enable = true;
};
};