diff options
author | tv <tv@krebsco.de> | 2019-08-02 17:04:39 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2019-08-02 17:04:39 +0200 |
commit | fa2d8e61f87aab361725ec1de28135b9f1640843 (patch) | |
tree | ae5dad07f26a647f8fe569474d875fa58e11aecf /mb/1systems/gr33n/configuration.nix | |
parent | a191e11b65af72623a62df2248e5207cc266a340 (diff) | |
parent | 1bfd05c2feb4bdffb2410b608b70e055d0d83a89 (diff) |
Merge remote-tracking branch 'prism/master'
Diffstat (limited to 'mb/1systems/gr33n/configuration.nix')
-rw-r--r-- | mb/1systems/gr33n/configuration.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/mb/1systems/gr33n/configuration.nix b/mb/1systems/gr33n/configuration.nix index 4342ba0..dcf9877 100644 --- a/mb/1systems/gr33n/configuration.nix +++ b/mb/1systems/gr33n/configuration.nix @@ -62,6 +62,7 @@ in { wcalc wget xz + zbackup ]; programs.gnupg.agent = { enable = true; enableSSHSupport = true; }; @@ -71,6 +72,19 @@ in { services.openssh.enable = true; services.openssh.passwordAuthentication = false; + services.codimd = { + enable = true; + workDir = "/storage/codimd"; + configuration = { + port = 1337; + host = "0.0.0.0"; + db = { + dialect = "sqlite"; + storage = "/storage/codimd/db.codimd.sqlite"; + }; + }; + }; + networking.wireless.enable = false; networking.networkmanager.enable = false; krebs.iptables.enable = true; |