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 ]; + }; + }