home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit d91896cb25405d11d4bcff83916d4f30afef834c
parent 718f9cf5355752f0643332b1746fda062fa0b931
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Mon, 26 Nov 2018 12:58:54 +0100

machines: add phantom

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Amachines/phantom.nix | 18++++++++++++++++++
1 file changed, 18 insertions(+), 0 deletions(-)

diff --git a/machines/phantom.nix b/machines/phantom.nix @@ -0,0 +1,18 @@ +{ pkgs, prefix, ...}: + +{ + imports = [ + ./base.nix + ]; + profiles.dev = { + go.enable = true; + js.enable = true; + }; + programs = { + vscode.enable = true; + emacs.enable = { + enable = true; + daemonService = false; + }; + }; +}