diff --git a/flake.nix b/flake.nix index 6cb76bbb..b79c6e08 100644 --- a/flake.nix +++ b/flake.nix @@ -161,20 +161,28 @@ ''; } { - name = "server"; + name = "server-support"; category = "general commands"; - help = "Run everything"; + help = "Run everything required for a server"; command = '' memcached & mysql & bundle install yarn install - rails s & rails jobs:work & yarn build:css --watch & yarn build:js --watch ''; } + { + name = "server"; + category = "general commands"; + help = "Run everything"; + command = '' + server-support & + rails s + ''; + } ]; language.c = { compiler = pkgs.gcc;