diff --git a/README.org b/README.org index 1a00167..acd8caf 100644 --- a/README.org +++ b/README.org @@ -159,6 +159,17 @@ The first configuration, which was built using the Ubuntu 20.04 LTS server editi - chromium - any other browser +** Phone (Termux) +:PROPERTIES: +:header-args: :tangle hosts/localhost.el +:END: + +Remove the ~desktop~ module, since we're running on android. + +#+begin_src emacs-lisp +(delete 'desktop dotfiles/modules) +#+end_src + * Modules Breaking down the project into logical units or chapters to keep the code more maintainable and organized. This is also a fundemental requirement to achieve the goal of modularity. Incorporating just the =core= module on a build server to build literate programming projects is just one example of what can be achieved. diff --git a/hosts/localhost.el b/hosts/localhost.el new file mode 100644 index 0000000..f13f03b --- /dev/null +++ b/hosts/localhost.el @@ -0,0 +1 @@ +(delete 'desktop dotfiles/modules)