From 71807d038a63c5b88f602090312bfe535c02601e Mon Sep 17 00:00:00 2001 From: Yves Dubromelle Date: Thu, 9 Jun 2016 16:09:51 +0200 Subject: [PATCH] ajout d'une expression pour les services --- base.nix | 1 + services.nix | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 services.nix 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; +}