re-enabled docker

This commit is contained in:
2024-11-15 21:55:18 +01:00
parent 28422d460a
commit e75263b16e
3 changed files with 19 additions and 15 deletions

View File

@ -16,10 +16,9 @@
]
# 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;
# TODO: Enable the line above once we migrated the basic server configuration to the new NixOS setup.
++ 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;
# Enable networking
networking.networkmanager.enable = true;