commit 4c0d0e0facabc0aae24038eccb5546c8f3ce549b parent d91896cb25405d11d4bcff83916d4f30afef834c Author: Vincent Demeester <vincent@sbr.pm> Date: Mon, 26 Nov 2018 13:06:35 +0100 phantom: fix emacs profile Signed-off-by: Vincent Demeester <vincent@sbr.pm> Diffstat:
M | machines/phantom.nix | | | 16 | +++++++++------- |
1 file changed, 9 insertions(+), 7 deletions(-)
diff --git a/machines/phantom.nix b/machines/phantom.nix @@ -4,15 +4,17 @@ imports = [ ./base.nix ]; - profiles.dev = { - go.enable = true; - js.enable = true; - }; - programs = { - vscode.enable = true; - emacs.enable = { + profiles = { + dev = { + go.enable = true; + js.enable = true; + }; + emacs = { enable = true; daemonService = false; }; }; + programs = { + vscode.enable = true; + }; }