diff options
| author | magenbluten <magenbluten@codemonkey.cc> | 2019-07-14 13:24:51 +0200 | 
|---|---|---|
| committer | magenbluten <magenbluten@codemonkey.cc> | 2019-07-14 13:24:51 +0200 | 
| commit | e6e24a32a5e08f6d4723671cc13e90e063be5f5e (patch) | |
| tree | 5103b6433995a421add4768d31097db4db219f61 | |
| parent | 5dad84e53600957b8136d5cac7400e7a8adbc000 (diff) | |
mb gr33n.r: add codimd
| -rw-r--r-- | mb/1systems/gr33n/configuration.nix | 13 | ||||
| -rw-r--r-- | mb/1systems/orange/configuration.nix | 4 | 
2 files changed, 17 insertions, 0 deletions
| diff --git a/mb/1systems/gr33n/configuration.nix b/mb/1systems/gr33n/configuration.nix index e20503a..dcf9877 100644 --- a/mb/1systems/gr33n/configuration.nix +++ b/mb/1systems/gr33n/configuration.nix @@ -72,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; diff --git a/mb/1systems/orange/configuration.nix b/mb/1systems/orange/configuration.nix index cabbc6f..b43bd8a 100644 --- a/mb/1systems/orange/configuration.nix +++ b/mb/1systems/orange/configuration.nix @@ -134,6 +134,10 @@ in {      zbackup    ]; +  environment.variables = { +    EDITOR = ["nvim"]; +  }; +    environment.shellAliases = {      ll = "ls -alh";      ls = "ls --color=tty"; | 
