nix: add development vm

This commit adds back the ability to run a development VM with docspell.
See updated documentation for examples.
This commit is contained in:
Vladimir Timofeenko
2022-12-23 18:57:34 -08:00
parent 8f8adad595
commit eca08c7416
4 changed files with 67 additions and 29 deletions

View File

@ -15,7 +15,7 @@ in
i18n = {
defaultLocale = "en_US.UTF-8";
};
console.keyMap = "de";
console.keyMap = "us";
users.users.root = {
password = "root";
@ -88,6 +88,9 @@ in
firewall.allowedTCPPorts = [ 7880 ];
};
system.stateVersion = "22.05";
system.stateVersion = "22.11";
# This slows down the build of a vm
documentation.enable = false;
}