disables docker services until basics on server are setup

This commit is contained in:
Menno van Leeuwen 2024-11-15 20:24:08 +01:00
parent 60f0ab11bd
commit 0c92e38370
Signed by: vleeuwenmenno
SSH Key Fingerprint: SHA256:OJFmjANpakwD3F2Rsws4GLtbdz1TJ5tkQF0RZmF0TRE

View File

@ -16,9 +16,10 @@
]
# Include packages based on whether this is a server or workstation.
++ lib.optional isServer ./packages/server/default.nix
++ lib.optional isWorkstation ./packages/workstation/default.nix
# Include docker if this is a server, otherwise include nothing because we don't intend on running docker services on workstations.
++ lib.optional isServer ./docker/default.nix;
++ lib.optional isWorkstation ./packages/workstation/default.nix;
# Include docker if this is a server, otherwise include nothing because we don't intend on running docker services on workstations.
# ++ lib.optional isServer ./docker/default.nix;
# TODO: Enable the line above once we migrated the basic server configuration to the new NixOS setup.
# Enable networking
networking.networkmanager.enable = true;