-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
turtl-server: init at 2018-11-05 #50409
Conversation
}, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-8_x"}: | ||
|
||
let | ||
nodePackages = import ./node.nix { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you try to put this into pkgs/development/node-packages/node-packages-v8.json
so we can share its dependencies with the other node packages?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sharing in the sense of only having the expression stored once.
See #44076 (comment)
for previous discussions.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done! @Mic92 please check again.
Thanks for your help! It looks much simpler now.
services.turtl-server = { | ||
enable = mkEnableOption "Turtl notebook server"; | ||
|
||
statePath = mkOption { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's a convention to use dataDir
instead.
enable = mkEnableOption "Turtl notebook server"; | ||
|
||
statePath = mkOption { | ||
type = types.str; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
types.path
listenPort = mkOption { | ||
type = types.int; | ||
default = 8181; | ||
example = 8181; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use types.port
and remove the example (no need to have an example that's the same as the default) or change it.
default = 8181; | ||
example = 8181; | ||
description = '' | ||
Port. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs better description.
extraConfig = mkOption { | ||
type = types.attrs; | ||
default = { }; | ||
description = '' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This option is never used
''; | ||
}; | ||
|
||
analytics= mkOption { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please make the formatting consistent: Always have spaces surrounding =
email: | ||
enabled: ${toString cfg.plugin.email} | ||
sync: | ||
enabled: ${toString cfg.plugin.sync} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will result in sync: enabled: 1
, is that right? You can use lib.boolToString
to get the strings "false"
or "true"
'' + lib.optionalString (cfg.listenAddress == null) '' | ||
server: | ||
host: | ||
port: ${toString cfg.listenPort} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use
if (cfg.listenAddress == null) then ''
# ...
'' else ''
# ...
''
instead
cfg = config.services.turtl-server; | ||
|
||
turtlServerConfYAML = pkgs.writeTextFile { | ||
name = "turtl-server-config.yaml"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use pkgs.writeText
instead.
}; | ||
|
||
localDatabasePassword = mkOption { | ||
type = types.str; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Try to avoid password options if possible
@raquelgb any updates on this? |
Thank you for your contributions.
|
If you are still interested in working on this, please open a new PR. |
Motivation for this change
Run your own turtlapp server. See github.
Things done
sandbox
innix.conf
on non-NixOS)nix-shell -p nox --run "nox-review wip"
./result/bin/
)nix path-info -S
before and after)