mb gr33n.r: add codimd
This commit is contained in:
parent
cc470ff158
commit
02ab710568
mb/1systems
|
@ -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;
|
||||
|
|
|
@ -134,6 +134,10 @@ in {
|
|||
zbackup
|
||||
];
|
||||
|
||||
environment.variables = {
|
||||
EDITOR = ["nvim"];
|
||||
};
|
||||
|
||||
environment.shellAliases = {
|
||||
ll = "ls -alh";
|
||||
ls = "ls --color=tty";
|
||||
|
|
Loading…
Reference in a new issue