1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00
nixos/layer/server.nix

11 lines
173 B
Nix

{ config, pkgs, lib, ...}:
{
config = lib.mkIf config.variables.server {
services.sshd.enable = true;
imports = [
../services
../secrets
];
};
}