From a172709df37c2b8062ce304e88dba6fc8ef83120 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Wed, 19 Jun 2024 13:55:37 +0100 Subject: [PATCH] Enable Samba and thunderbolt services for Tone --- configuration/Tone.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/configuration/Tone.nix b/configuration/Tone.nix index 28376112..e3711647 100644 --- a/configuration/Tone.nix +++ b/configuration/Tone.nix @@ -11,6 +11,10 @@ etc."ppp/options".text = '' ipcp-accept-remote ''; - systemPackages = with pkgs; [openfortivpn samba]; + systemPackages = with pkgs; [openfortivpn]; + }; + services = { + samba.enable = true; + hardware.bolt.enable = true; }; }