diff --git a/base.nix b/base.nix index 50ce630..a5d6c00 100644 --- a/base.nix +++ b/base.nix @@ -8,5 +8,6 @@ ./localisation.nix ./networking.nix ./tools.nix + ./services.nix ]; } diff --git a/services.nix b/services.nix new file mode 100644 index 0000000..1982b25 --- /dev/null +++ b/services.nix @@ -0,0 +1,6 @@ +{ config, pkgs, ... }: + +{ + # Enable the OpenSSH dble the OpenSSH daemon. aemon + services.openssh.enable = true; +}