From a91f81a6503dd7cf2356fccac67336f4891db4ae Mon Sep 17 00:00:00 2001 From: Yves Dubromelle Date: Thu, 9 Jun 2016 16:19:24 +0200 Subject: [PATCH] activation de CUPS et des pilotes samsung --- services.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/services.nix b/services.nix index 1982b25..7d02830 100644 --- a/services.nix +++ b/services.nix @@ -3,4 +3,11 @@ { # Enable the OpenSSH dble the OpenSSH daemon. aemon services.openssh.enable = true; + + # Enable CUPS to print documents. + services.printing = { + enable = true; + drivers = [ pkgs.samsung-unified-linux-driver ]; + }; + }