Browse Source

Install package method

main
parent
commit
479e79bc13
  1. 10
      modules/core.org

10
modules/core.org

@ -80,6 +80,16 @@ Despite having our *stateful* and *immutable* configurations seperate, it's good
Define some helper methods to use throughout the configuration. Define some helper methods to use throughout the configuration.
** Packages
Define a method to install system packages on *Debian/Ubuntu* derived systems.
#+begin_src emacs-lisp
(defun dotfiles/install (pkgs)
"Install system packages on Debian/Ubuntu systems."
(async-shell-command (concat "sudo apt install -y " pkgs)))
#+end_src
** Tangle directory ** Tangle directory
Build all of the *Org*[fn:4] files within a given directory, recursively. Build all of the *Org*[fn:4] files within a given directory, recursively.

Loading…
Cancel
Save