mirror of
https://github.com/ellmau/nixos.git
synced 2025-12-19 09:29:36 +01:00
11 lines
173 B
Nix
11 lines
173 B
Nix
{ config, pkgs, lib, ...}:
|
|
{
|
|
config = lib.mkIf config.variables.server {
|
|
services.sshd.enable = true;
|
|
imports = [
|
|
../services
|
|
../secrets
|
|
];
|
|
};
|
|
}
|