From f86d9c277757919942b606690e1b2a9c20533bc7 Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Sat, 11 Sep 2021 14:09:32 -0400 Subject: [PATCH] Re-organize footnotes --- README.org | 328 ++++++++++++++++++++++++++--------------------------- 1 file changed, 164 insertions(+), 164 deletions(-) diff --git a/README.org b/README.org index 2f81c4a..add3fa8 100644 --- a/README.org +++ b/README.org @@ -152,7 +152,7 @@ home-manager.inputs.nixpkgs.follows = "nixpkgs"; ** Emacs Overlay -Adding the Emacs Overlay[fn:9] extends the GNU/Emacs[fn:2] package set to contain the latest versions, and daily generations from popular package sources, including the needed dependencies to run GNU/Emacs[fn:2] as a Window Manager. +Adding the Emacs Overlay[fn:1] extends the GNU/Emacs[fn:2] package set to contain the latest versions, and daily generations from popular package sources, including the needed dependencies to run GNU/Emacs[fn:2] as a Window Manager. #+NAME: os-emacs-overlay #+BEGIN_SRC nix @@ -161,7 +161,7 @@ emacs-overlay.url = "github:nix-community/emacs-overlay"; ** NixOS Hardware -NixOS Hardware[fn:10] is a collection of NixOS[fn:5] modules covering specific hardware quirks. Unlike the channel, this will update the git repository on a rebuild. However, it's easy to pin particular revisions for more stability. +NixOS Hardware[fn:3] is a collection of NixOS[fn:4] modules covering specific hardware quirks. Unlike the channel, this will update the git repository on a rebuild. However, it's easy to pin particular revisions for more stability. #+NAME: os-nixos-hardware #+BEGIN_SRC nix @@ -170,7 +170,7 @@ nixos-hardware.url = "github:nixos/nixos-hardware"; ** Nix On Droid -Nix On Droid[fn:11] is a deployment of the Nix[fn:6] Package Manager on Android, in a single-click installable package. It does not require =root=, user namespace support, or disabling SELinux, but relies on =proot=. It has no relation to the Termux distribution. +Nix On Droid[fn:5] is a deployment of the Nix[fn:6] Package Manager on Android, in a single-click installable package. It does not require =root=, user namespace support, or disabling SELinux, but relies on =proot=. It has no relation to the Termux distribution. #+NAME: os-nix-on-droid #+BEGIN_SRC nix @@ -180,7 +180,7 @@ nix-on-droid.inputs.nixpkgs.follows = "nixpkgs"; * Development Shells -The command ~nix-shell~[fn:12] will build the dependencies of the specified derivation, but not the derivation itself. It will then start an interactive shell in which all environment variables defined by the derivation /path/ have been set to their corresponding values. +The command ~nix-shell~[fn:7] will build the dependencies of the specified derivation, but not the derivation itself. It will then start an interactive shell in which all environment variables defined by the derivation /path/ have been set to their corresponding values. Import this shell with ~nix-shell /etc/dotfiles/shell.nix~. @@ -208,7 +208,7 @@ in mkShell { ** Go -Go[fn:13] is an open-source programming language that makes it easy to build simple, reliable, and efficient software. It's statically typed and compiled programming language. It's syntactically similar to C, but with memory safety, garbage collection, structural typing, and CSP-style concurrency. +Go[fn:8] is an open-source programming language that makes it easy to build simple, reliable, and efficient software. It's statically typed and compiled programming language. It's syntactically similar to C, but with memory safety, garbage collection, structural typing, and CSP-style concurrency. Import this shell with ~nix-shell /etc/dotfiles/shells/go.nix~ @@ -236,7 +236,7 @@ mkShell { ** Rust -Rust[fn:14] is a multi-paradigm programming language designed for performance and safety, especially safe concurrency. It is syntactically similar to C++, but can garantee memory safety by using a borrow checker to validate references. Rust[fn:14] achieves memory safety /without/ garbage collection, and reference counting is optional. +Rust[fn:9] is a multi-paradigm programming language designed for performance and safety, especially safe concurrency. It is syntactically similar to C++, but can garantee memory safety by using a borrow checker to validate references. Rust[fn:9] achieves memory safety /without/ garbage collection, and reference counting is optional. Import this shell with ~nix-shell /etc/dotfiles/shells/rust.nix~. @@ -259,7 +259,7 @@ mkShell { ** Node -Node.js[fn:15] is an open-source, cross-platform, back-end JavaScript runtime environment that runs on the V8 engine, and executes JavaScript code outside of a web browser. Node.js[fn:15] lets developers user JavaScript to write command line tools, and for server-side scripting to produce dynamic web page content. +Node.js[fn:10] is an open-source, cross-platform, back-end JavaScript runtime environment that runs on the V8 engine, and executes JavaScript code outside of a web browser. Node.js[fn:10] lets developers user JavaScript to write command line tools, and for server-side scripting to produce dynamic web page content. Import this shell with ~nix-shell /etc/dotfiles/shells/node.nix~. @@ -284,7 +284,7 @@ mkShell { ** Java -OpenJDK[fn:16] is a free and open-source implementation of the Java Platform, Standard Edition. It is the result of an effort Sun Microsystems began in 2006. The implementation is licensed under the GNU General Public License Version 2 with a linking exception. +OpenJDK[fn:11] is a free and open-source implementation of the Java Platform, Standard Edition. It is the result of an effort Sun Microsystems began in 2006. The implementation is licensed under the GNU General Public License Version 2 with a linking exception. Import this shell with ~nix-shell /etc/dotfiles/shells/java.nix~. @@ -306,7 +306,7 @@ mkShell { ** gRPC -gRPC[fn:17] is a modern open-source, high-performance Remote Procedure Call (RPC) framework that can run in any environment. It can efficiently connect services in and across data centres with pluggable support for load balancing, tracing, health checking, and authentication. +gRPC[fn:12] is a modern open-source, high-performance Remote Procedure Call (RPC) framework that can run in any environment. It can efficiently connect services in and across data centres with pluggable support for load balancing, tracing, health checking, and authentication. Import this shell with ~nix-shell /etc/dotfiles/shells/grpc.nix~. @@ -331,7 +331,7 @@ mkShell { ** C/C++ -C[fn:18] is a general-purpose, procedural computer programming language support structured programming, lexical variable scope, and recursion. It has a static type system, and by design provides constructs that map efficiently to typical machine instructions. C++[fn:19] is a general-purpose programming language created as an extension of the C[fn:18] programming language. +C[fn:13] is a general-purpose, procedural computer programming language support structured programming, lexical variable scope, and recursion. It has a static type system, and by design provides constructs that map efficiently to typical machine instructions. C++[fn:14] is a general-purpose programming language created as an extension of the C[fn:13] programming language. Import this shell with ~nix-shell /etc/dotfiles/shells/cc.nix~. @@ -355,7 +355,7 @@ mkShell { ** Python -Python[fn:20] is an interpreted high-level, general-purpose programming language. Its design philosophy emphasizes code readability, with its notable use of significant indentation. Its language constructs, as well as its object-oriented approach aim to help programmers write clear, logical, code for small and large projects. +Python[fn:15] is an interpreted high-level, general-purpose programming language. Its design philosophy emphasizes code readability, with its notable use of significant indentation. Its language constructs, as well as its object-oriented approach aim to help programmers write clear, logical, code for small and large projects. Import this shell with ~nix-shell /etc/dotfiles/shells/python.nix~ @@ -379,9 +379,9 @@ mkShell { ** Docker -Compose[fn:21] is a tool for defining and running multi-container Docker[fn:4] applications. With Compose[fn:21], you use a YAML file to configure your application services. Then, with a single command, you create and start all of the services from your configuration. +Compose[fn:16] is a tool for defining and running multi-container Docker[fn:17] applications. With Compose[fn:16], you use a YAML file to configure your application services. Then, with a single command, you create and start all of the services from your configuration. -Machine[fn:22] is a tool that lets you install Docker Engine on virtual hosts, and manage the hosts with ~docker-machine~ commands. You can use Machine[fn:22] to create hosts on your local box, company network, data center, or on any cloud provider. +Machine[fn:18] is a tool that lets you install Docker Engine on virtual hosts, and manage the hosts with ~docker-machine~ commands. You can use Machine[fn:18] to create hosts on your local box, company network, data center, or on any cloud provider. Import this shell with ~nix-shell /etc/dotfiles/shells/docker.nix~ @@ -402,7 +402,7 @@ mkShell { ** Heroku -Heroku[fn:23] is a cloud platform as a service supporting several programming languages. One of the first cloud platforms, Heroku[fn:23] has been in development since June 2007, when it supported only the Ruby programming language. It now supports Java, Node.js, Scala, Clojure, Python, PHP, and Go. +Heroku[fn:19] is a cloud platform as a service supporting several programming languages. One of the first cloud platforms, Heroku[fn:19] has been in development since June 2007, when it supported only the Ruby programming language. It now supports Java, Node.js, Scala, Clojure, Python, PHP, and Go. Import this shell with ~nix-shell /etc/dotfiles/shells/heroku.nix~ @@ -422,7 +422,7 @@ mkShell { * Host Configurations -NixOS[fn:5] typically stores the current machine configuration in =/etc/nixos/configuration.nix=. In this project, this file is stored in =/etc/dotfiles/hosts/$HOSTNAME/...=, and imported, along with the generated hardware configurations. This ensures that multiple host machines can share the same modules, and generating new host definitions is trivial. It also makes it easier to share common configurations amongst all of the hosts, such as with pre-configured wireless networking: +NixOS[fn:4] typically stores the current machine configuration in =/etc/nixos/configuration.nix=. In this project, this file is stored in =/etc/dotfiles/hosts/$HOSTNAME/...=, and imported, along with the generated hardware configurations. This ensures that multiple host machines can share the same modules, and generating new host definitions is trivial. It also makes it easier to share common configurations amongst all of the hosts, such as with pre-configured wireless networking: #+NAME: host-config-wifi #+BEGIN_SRC nix @@ -465,7 +465,7 @@ users.users.chris.openssh.authorizedKeys.keys = [ ** Default -The default host, built using QEMU[fn:24], a free and open-source emulator that can perform hardware virtualization. It features a lightweight system optimized for development, running GNU/Emacs[fn:2] + EXWM[fn:25] as the graphical environment. +The default host, built using QEMU[fn:20], a free and open-source emulator that can perform hardware virtualization. It features a lightweight system optimized for development, running GNU/Emacs[fn:2] + EXWM[fn:21] as the graphical environment. #+NAME: host-default #+BEGIN_SRC nix :noweb yes @@ -499,7 +499,7 @@ Deploy this configuration with ~nixos-rebuild switch --flake /etc/dotfiles/#nixo *** Configuration -This is a basic default configuration that specified the indended default configuration of the system. Because NixOS[fn:5] has a declarative configuration model, you can create or edit a description of the desired configuration, and update it from one file. +This is a basic default configuration that specified the indended default configuration of the system. Because NixOS[fn:4] has a declarative configuration model, you can create or edit a description of the desired configuration, and update it from one file. #+BEGIN_SRC nix :noweb yes :tangle hosts/nixos/configuration.nix # <> @@ -530,7 +530,7 @@ This is a basic default configuration that specified the indended default config *** Hardware -The file system for this host is a single 24GB QCOW file, a format for disk images used by QEMU[fn:24]. The file can be recreated easily by following the steps listed in the NixOS[fn:5] installation manual, specifically the section on disk formatting. +The file system for this host is a single 24GB QCOW file, a format for disk images used by QEMU[fn:20]. The file can be recreated easily by following the steps listed in the NixOS[fn:4] installation manual, specifically the section on disk formatting. #+BEGIN_SRC nix :noweb yes :tangle hosts/nixos/hardware.nix # <> @@ -563,7 +563,7 @@ The file system for this host is a single 24GB QCOW file, a format for disk imag ** Acernitro -My gaming laptop, the model is an Acer Nitro AN-515-53[fn:26]. The Nitro 5 has more in common with the mid-range notebooks rather than the gaming models due to its cooling design, chassis, and overall construction. +My gaming laptop, the model is an Acer Nitro AN-515-53[fn:22]. The Nitro 5 has more in common with the mid-range notebooks rather than the gaming models due to its cooling design, chassis, and overall construction. Here are the specs: @@ -706,7 +706,7 @@ This configuration is nearly identical to the default, except for a few key diff ** Raspberry -The Raspberry Pi 400[fn:27] is your complete personal computer, built into a compact keyboard. It features a quad-core, 64-bit processor, 4GB of RAM, wireless networking, dual-display output, 4k video playback, as well as a 40-pin GPIO header. It's the most powerful Raspberry Pi computer yet. +The Raspberry Pi 400[fn:23] is your complete personal computer, built into a compact keyboard. It features a quad-core, 64-bit processor, 4GB of RAM, wireless networking, dual-display output, 4k video playback, as well as a 40-pin GPIO header. It's the most powerful Raspberry Pi computer yet. #+NAME: host-raspberry #+BEGIN_SRC nix :noweb yes @@ -830,7 +830,7 @@ This section is very much a work in progress. I have struggled to get this devic ** Homecloud -The Raspberry Pi Model B-8GB[fn:28] is the latest product in the popular Raspberry Pi range of computers. It offers groundbreaking increases in processor speed, multimedia performance, memory, and connectivity compared to the prior generation. On NixOS[fn:5], the Raspberry Pi family is /only/ supported on the =AArch64= platform, although there is community support for =armv6l= and =armv7l=. +The Raspberry Pi Model B-8GB[fn:24] is the latest product in the popular Raspberry Pi range of computers. It offers groundbreaking increases in processor speed, multimedia performance, memory, and connectivity compared to the prior generation. On NixOS[fn:4], the Raspberry Pi family is /only/ supported on the =AArch64= platform, although there is community support for =armv6l= and =armv7l=. #+NAME: host-homecloud #+BEGIN_SRC nix :noweb yes @@ -945,7 +945,7 @@ Deploy this configuration with ~sudo nixos-rebuild switch --flake /etc/dotfiles/ ** Android -This is my Samsung Galaxy S10+[fn:29] running Nix On Droid[fn:11] with the experimental support for Flakes being used to manage the configuration. +This is my Samsung Galaxy S10+[fn:25] running Nix On Droid[fn:5] with the experimental support for Flakes being used to manage the configuration. #+NAME: host-android #+BEGIN_SRC nix @@ -973,7 +973,7 @@ Build the activation package with ~nix build .#android --impure~, and activate i * Module Definitions -Modules are files combined by NixOS[fn:5] to produce the full system configuration. Modules wre introduced to allow extending NixOS[fn:5] without modifying its source code. They also allow splitting up =configuration.nix=, making the system configuration easier to maintain and use. +Modules are files combined by NixOS[fn:4] to produce the full system configuration. Modules wre introduced to allow extending NixOS[fn:4] without modifying its source code. They also allow splitting up =configuration.nix=, making the system configuration easier to maintain and use. ** X11 @@ -982,7 +982,7 @@ Modules are files combined by NixOS[fn:5] to produce the full system configurati ./modules/x11.nix #+END_SRC -X11, or X[fn:30] is the generic name for the X Window System Display Server. All graphical GNU/Linux[fn:1] applications connect to an X-Window[fn:30] (or Wayland[fn:31]) to display graphical data on the monitor of a computer. Its a program that acts as the interface between graphical applications and the graphics subsystem of the computer. +X11, or X[fn:26] is the generic name for the X Window System Display Server. All graphical GNU/Linux[fn:27] applications connect to an X-Window[fn:26] (or Wayland[fn:28]) to display graphical data on the monitor of a computer. Its a program that acts as the interface between graphical applications and the graphics subsystem of the computer. #+BEGIN_SRC nix :noweb yes :tangle modules/x11.nix # <> @@ -1033,7 +1033,7 @@ X11, or X[fn:30] is the generic name for the X Window System Display Server. All ./modules/ssh.nix #+END_SRC -OpenSSH[fn:32] is a suite of secure networking utilities based on the Secure Shell Protocol, which provides a secure channel over an unsecured network in a client-server architecture. OpenSSH[fn:32] started as a fork of the free SSH program; later versions were proprietary software. +OpenSSH[fn:29] is a suite of secure networking utilities based on the Secure Shell Protocol, which provides a secure channel over an unsecured network in a client-server architecture. OpenSSH[fn:29] started as a fork of the free SSH program; later versions were proprietary software. Apply some configuration to the default settings: @@ -1060,7 +1060,7 @@ Apply some configuration to the default settings: ./modules/hugo.nix #+END_SRC -Hugo[fn:33] is one of the most popular open-source static site generators. +Hugo[fn:30] is one of the most popular open-source static site generators. #+BEGIN_SRC nix :noweb yes :tangle modules/hugo.nix # <> @@ -1086,7 +1086,7 @@ in { ./modules/flakes.nix #+END_SRC -Nix Flakes[fn:34] are an upcoming feature of the Nix package manager[fn:6]. They allow you to specify your codes dependencies in a declarative way, simply by listing them inside of a ~flake.nix~ file. Each dependency is then pinned to a specific git-hash. Flakes[fn:34] replace the =nix-channels= command and things like ~builtins.fetchGit~, keeping dependencies at the top of the tree, and channels always in sync. Currently, Flakes[fn:34] are not available unless explicitly enabled. +Nix Flakes[fn:31] are an upcoming feature of the Nix package manager[fn:6]. They allow you to specify your codes dependencies in a declarative way, simply by listing them inside of a ~flake.nix~ file. Each dependency is then pinned to a specific git-hash. Flakes[fn:31] replace the =nix-channels= command and things like ~builtins.fetchGit~, keeping dependencies at the top of the tree, and channels always in sync. Currently, Flakes[fn:31] are not available unless explicitly enabled. #+BEGIN_SRC nix :noweb yes :tangle modules/flakes.nix # <> @@ -1114,7 +1114,7 @@ Nix Flakes[fn:34] are an upcoming feature of the Nix package manager[fn:6]. They ./modules/cachix.nix #+END_SRC -Cachix[fn:35] is a Command line client for Nix[fn:6] binary cache hosting. This allows downloading and usage of pre-compiled binaries for applications on /nearly/ every available system architecture. This speeds up the time it takes to rebuild configurations. +Cachix[fn:32] is a Command line client for Nix[fn:6] binary cache hosting. This allows downloading and usage of pre-compiled binaries for applications on /nearly/ every available system architecture. This speeds up the time it takes to rebuild configurations. #+BEGIN_SRC nix :noweb yes :tangle modules/cachix.nix # <> @@ -1164,7 +1164,7 @@ Cachix[fn:35] is a Command line client for Nix[fn:6] binary cache hosting. This ./modules/nvidia.nix #+END_SRC -Use the ~lspci~ command to determine the type of graphics card you have, following the guide on NVIDIA at the NixOS Wiki[fn:36]. +Use the ~lspci~ command to determine the type of graphics card you have, following the guide on NVIDIA at the NixOS Wiki[fn:33]. #+BEGIN_QUOTE + MXM / output-providing card (shows as VGA Controller in lspci), i.e. graphics card in desktop computer or in some laptops @@ -1263,7 +1263,7 @@ in { ./modules/firefox.nix #+END_SRC -Firefox Browser[fn:37], also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. +Firefox Browser[fn:34], also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. #+BEGIN_SRC nix :noweb yes :tangle modules/firefox.nix # <> @@ -1284,7 +1284,7 @@ Firefox Browser[fn:37], also known as Mozilla Firefox or simply Firefox, is a fr ./modules/jellyfin.nix #+END_SRC -Jellyfin[fn:38] is a suite of multimedia applications designed to organize, manage, and share digital media files to networked devices. It consists of a server application installed on a machine, and another application running as a client on devices such as Smartphones, Tablets, SmartTVs, Streaming Media Players, Game Consoles, or in a Web Browser. It can also serve media to DLNA and Chromecast enabled devices. It's free and open-source software fork of Emby. +Jellyfin[fn:35] is a suite of multimedia applications designed to organize, manage, and share digital media files to networked devices. It consists of a server application installed on a machine, and another application running as a client on devices such as Smartphones, Tablets, SmartTVs, Streaming Media Players, Game Consoles, or in a Web Browser. It can also serve media to DLNA and Chromecast enabled devices. It's free and open-source software fork of Emby. #+BEGIN_SRC nix :noweb yes :tangle modules/jellyfin.nix # <> @@ -1304,7 +1304,7 @@ Jellyfin[fn:38] is a suite of multimedia applications designed to organize, mana ./modules/moonlight.nix #+END_SRC -Moonlight[fn:39] is an open-source implementation of NVIDIA's GameStream Protocol. You can stream your collection of PC games from your GameStream-compatible PC to any supported device and play them remotely. Moonlight[fn:39] is perfect for gaming on the go (or on GNU/Linux[fn:1]) without sacrificing the graphics and game selection available for the PC. +Moonlight[fn:36] is an open-source implementation of NVIDIA's GameStream Protocol. You can stream your collection of PC games from your GameStream-compatible PC to any supported device and play them remotely. Moonlight[fn:36] is perfect for gaming on the go (or on GNU/Linux[fn:27]) without sacrificing the graphics and game selection available for the PC. #+BEGIN_SRC nix :noweb yes :tangle modules/moonlight.nix # <> @@ -1324,7 +1324,7 @@ Moonlight[fn:39] is an open-source implementation of NVIDIA's GameStream Protoco ./modules/teamviewer.nix #+END_SRC -The Teamviewer[fn:40] remote connectivity cloud platform enables secure remote access to any device, across platforms, from anywhere, anytime. Teamviewer[fn:40] connects computers, smartphones, servers, IoT devices, robots -- anything -- with fast, high performance connections through their global access network. It has been used in outer-space low-bandwidth environments. +The Teamviewer[fn:37] remote connectivity cloud platform enables secure remote access to any device, across platforms, from anywhere, anytime. Teamviewer[fn:37] connects computers, smartphones, servers, IoT devices, robots -- anything -- with fast, high performance connections through their global access network. It has been used in outer-space low-bandwidth environments. #+BEGIN_SRC nix :noweb yes :tangle modules/teamviewer.nix # <> @@ -1342,7 +1342,7 @@ The Teamviewer[fn:40] remote connectivity cloud platform enables secure remote a ** Home Manager -Home Manager[fn:8] includes a =flake.nix= file for compatibility with Nix Flakes, a feature utilized heavily in this project. When using flakes, switching to a new configuration is done /only/ for the entire system, using the command ~nixos-rebuild switch --flake ~, instead of ~nixos-rebuild~, and ~home-manager~ seperately. +Home Manager[fn:38] includes a =flake.nix= file for compatibility with Nix Flakes, a feature utilized heavily in this project. When using flakes, switching to a new configuration is done /only/ for the entire system, using the command ~nixos-rebuild switch --flake ~, instead of ~nixos-rebuild~, and ~home-manager~ seperately. #+NAME: module-home-manager #+BEGIN_SRC nix :noweb yes @@ -1368,7 +1368,7 @@ inputs.home-manager.nixosModules.home-manager { ./modules/git.nix #+END_SRC -Git[fn:41] is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. Git is easy to learn, has a tiny footprint, and lighting fast performance. It outclasses every other version control tool such as: SCM, Subversion, CVS, ClearCase, with features like cheap local branching, convinient staging areas, and multiple workflows. +Git[fn:39] is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. Git is easy to learn, has a tiny footprint, and lighting fast performance. It outclasses every other version control tool such as: SCM, Subversion, CVS, ClearCase, with features like cheap local branching, convinient staging areas, and multiple workflows. #+BEGIN_SRC nix :noweb yes :tangle modules/git.nix # <> @@ -1408,7 +1408,7 @@ in { ./modules/gpg.nix #+END_SRC -GNU Privacy Guard[fn:42] is a free-software replacement for Symantec's PGP cryptographic software suite. It is compliant with RFC 4880, the IETF standards-track specification of OpenPGP. Modern versions of PGP are interoperable with GnuPG and other OpenPGP-compliant systems. +GNU Privacy Guard[fn:40] is a free-software replacement for Symantec's PGP cryptographic software suite. It is compliant with RFC 4880, the IETF standards-track specification of OpenPGP. Modern versions of PGP are interoperable with GnuPG and other OpenPGP-compliant systems. #+BEGIN_SRC nix :noweb yes :tangle modules/gpg.nix # <> @@ -1431,7 +1431,7 @@ GNU Privacy Guard[fn:42] is a free-software replacement for Symantec's PGP crypt ./modules/vim.nix #+END_SRC -Neovim[fn:43] is a project that seeks to aggressively refactor Vim in order to: +Neovim[fn:41] is a project that seeks to aggressively refactor Vim in order to: + Simplify maintenance and encourage contributions + Split the work between multiple developers @@ -1471,7 +1471,7 @@ Neovim[fn:43] is a project that seeks to aggressively refactor Vim in order to: ./modules/gtk.nix #+END_SRC -GTK[fn:44] is a free and open-source, cross-platform widget toolkit for graphical user interfaces. It's one of the most popular toolkits for the Wayland[fn:31] and X11[fn:30] windowing systems. +GTK[fn:42] is a free and open-source, cross-platform widget toolkit for graphical user interfaces. It's one of the most popular toolkits for the Wayland[fn:28] and X11[fn:26] windowing systems. #+BEGIN_SRC nix :noweb yes :tangle modules/gtk.nix # <> @@ -1512,7 +1512,7 @@ GTK[fn:44] is a free and open-source, cross-platform widget toolkit for graphica ./modules/emacs.nix #+END_SRC -GNU/Emacs[fn:2] is an extensible, customizable, free/libre text editor -- and more. At its core is an interpreter for Emacs Lisp[fn:42], a dialect of the Lisp programming language with extensions to support text editing. Other features include: +GNU/Emacs[fn:2] is an extensible, customizable, free/libre text editor -- and more. At its core is an interpreter for Emacs Lisp[fn:40], a dialect of the Lisp programming language with extensions to support text editing. Other features include: + Highly customizable + Full Unicopde support @@ -1737,7 +1737,7 @@ Define some methods for interaction between GNU/Emacs[fn:2], and the systems und pkgs.nixfmt #+END_SRC -Nix-mode[fn:45] is an Emacs[fn:2] major mode for editing Nix[fn:6] expressions. This provides basic handling of =.nix= files. Syntax highlighting and indentation support using =SMIE= are provided. +Nix-mode[fn:43] is an Emacs[fn:2] major mode for editing Nix[fn:6] expressions. This provides basic handling of =.nix= files. Syntax highlighting and indentation support using =SMIE= are provided. #+NAME: emacs-nix-mode-package #+BEGIN_SRC nix @@ -1746,7 +1746,7 @@ epkgs.nix-mode ** Evil Mode -Evil[fn:46] is an extensible VI layer for GNU/Emacs[fn:2]. It emulates the main features of Vim[fn:43], turning GNU/Emacs[fn:2] into a modal editor. +Evil[fn:44] is an extensible VI layer for GNU/Emacs[fn:2]. It emulates the main features of Vim[fn:41], turning GNU/Emacs[fn:2] into a modal editor. #+NAME: emacs-evil-package #+BEGIN_SRC nix @@ -1756,7 +1756,7 @@ epkgs.evil-surround epkgs.evil-nerd-commenter #+END_SRC -The next time Emacs[fn:2] is started, it will come up in /normal state/, denoted by == in the modeline. This is where the main ~vi~ bindings are defined. Like Emacs[fn:2] in general, Evil[fn:46] is extensible in Emacs Lisp[fn:42]. +The next time Emacs[fn:2] is started, it will come up in /normal state/, denoted by == in the modeline. This is where the main ~vi~ bindings are defined. Like Emacs[fn:2] in general, Evil[fn:44] is extensible in Emacs Lisp[fn:40]. #+NAME: emacs-evil-elisp #+BEGIN_SRC emacs-lisp @@ -1786,7 +1786,7 @@ The next time Emacs[fn:2] is started, it will come up in /normal state/, denoted epkgs.exwm #+END_SRC -EXWM (Emacs X Window Manager)[fn:25] is a full-featured tiling X window manager for GNU/Emacs[fn:2] built on-top of XELB. It features: +EXWM (Emacs X Window Manager)[fn:21] is a full-featured tiling X window manager for GNU/Emacs[fn:2] built on-top of XELB. It features: + Fully keyboard-driven operations + Hybrid layout modes (tiling & stacking) @@ -1799,7 +1799,7 @@ pkgs.nitrogen pkgs.autorandr #+END_SRC -I wanted to leave ~(exwm-enable)~ out of my Emacs configuration (which does no harm anyways). This can be called when using the daemon to start EXWM[fn:25]. +I wanted to leave ~(exwm-enable)~ out of my Emacs configuration (which does no harm anyways). This can be called when using the daemon to start EXWM[fn:21]. #+NAME: emacs-exwm-config #+BEGIN_SRC nix @@ -1813,7 +1813,7 @@ xsession = { }; #+END_SRC -EXWM[fn:25] cannot make an X window manager by itself, this is by design; You must tell X to do it. Override the =~/.xinitrc= file to start the =xsession=. +EXWM[fn:21] cannot make an X window manager by itself, this is by design; You must tell X to do it. Override the =~/.xinitrc= file to start the =xsession=. #+NAME: emacs-exwm-xinitrc #+BEGIN_SRC nix @@ -1873,7 +1873,7 @@ home.file.".xinitrc" = { epkgs.general #+END_SRC -General[fn:47] provides a more convenient method for binding keys in Emacs[fn:2], providing a unified interface for key definitions. Its primary purpose is to build on /existing/ functionality to make key definitions more clear and concise. +General[fn:45] provides a more convenient method for binding keys in Emacs[fn:2], providing a unified interface for key definitions. Its primary purpose is to build on /existing/ functionality to make key definitions more clear and concise. #+NAME: emacs-general-elisp #+BEGIN_SRC emacs-lisp @@ -1928,7 +1928,7 @@ General[fn:47] provides a more convenient method for binding keys in Emacs[fn:2] ** Which Key -Which-key[fn:48] is a minor mode for Emacs[fn:2] that displays the key bindings following your currently entered incomplete command (prefix) in a popup or mini-buffer. +Which-key[fn:46] is a minor mode for Emacs[fn:2] that displays the key bindings following your currently entered incomplete command (prefix) in a popup or mini-buffer. #+NAME: emacs-which-key-package #+BEGIN_SRC nix @@ -1945,7 +1945,7 @@ epkgs.which-key ** EWW -The Emacs Web Wowser[fn:49] is a Web browser written in Emacs Lisp[fn:42] based on the ~shr.el~ library. It's my primary browser when it comes to text-based browsing. +The Emacs Web Wowser[fn:47] is a Web browser written in Emacs Lisp[fn:40] based on the ~shr.el~ library. It's my primary browser when it comes to text-based browsing. + Use ~eww~ as the default browser + Don't use any special fonts or colours @@ -1962,7 +1962,7 @@ The Emacs Web Wowser[fn:49] is a Web browser written in Emacs Lisp[fn:42] based ** ERC -ERC[fn:50] is a powerful, modular, and extensible IRC client for GNU/Emacs[fn:2]. It's part of the GNU project, and included in Emacs. +ERC[fn:48] is a powerful, modular, and extensible IRC client for GNU/Emacs[fn:2]. It's part of the GNU project, and included in Emacs. #+NAME: emacs-erc-elisp #+BEGIN_SRC emacs-lisp @@ -1998,7 +1998,7 @@ ERC[fn:50] is a powerful, modular, and extensible IRC client for GNU/Emacs[fn:2] epkgs.dired-single #+END_SRC -Dired[fn:51] shows a directory listing inside of an Emacs[fn:2] buffer that can be used to perform various file operations on files and subdirectories. THe operations you can perform are numerous, from creating subdirectories, byte-compiling files, searching, and editing files. Dired-Extra[fn:52] provides extra functionality for Dired[fn:51]. +Dired[fn:49] shows a directory listing inside of an Emacs[fn:2] buffer that can be used to perform various file operations on files and subdirectories. THe operations you can perform are numerous, from creating subdirectories, byte-compiling files, searching, and editing files. Dired-Extra[fn:50] provides extra functionality for Dired[fn:49]. #+NAME: emacs-dired-elisp #+BEGIN_SRC emacs-lisp @@ -2025,7 +2025,7 @@ epkgs.all-the-icons epkgs.all-the-icons-dired #+END_SRC -All The Icons[fn:53] is a utility package to collect various Icon Fonts and prioritize them within GNU/Emacs[fn:2]. +All The Icons[fn:51] is a utility package to collect various Icon Fonts and prioritize them within GNU/Emacs[fn:2]. #+NAME: emacs-icons-elisp #+BEGIN_SRC emacs-lisp @@ -2046,7 +2046,7 @@ All The Icons[fn:53] is a utility package to collect various Icon Fonts and prio epkgs.emojify #+END_SRC -Emojify[fn:54] is an Emacs[fn:2] extension to display Emojis. It can display GitHub style Emojis like :smile: or plain ascii ones such as :). It tries to be as efficient as possible, while also providing flexibility. +Emojify[fn:52] is an Emacs[fn:2] extension to display Emojis. It can display GitHub style Emojis like :smile: or plain ascii ones such as :). It tries to be as efficient as possible, while also providing flexibility. #+NAME: emacs-emoji-elisp #+BEGIN_SRC emacs-lisp @@ -2061,7 +2061,7 @@ Emojify[fn:54] is an Emacs[fn:2] extension to display Emojis. It can display Git epkgs.eshell-prompt-extras #+END_SRC -EShell [fn:55] is a shell-like command interpreter for GNU/Emacs[fn:2] implemented in Emacs Lisp[fn:42]. It invokes no external processes except for those requested by the user. It's intended to be an alternative for IELM, and a full REPL envionment for Emacs[fn:2]. +EShell [fn:53] is a shell-like command interpreter for GNU/Emacs[fn:2] implemented in Emacs Lisp[fn:40]. It invokes no external processes except for those requested by the user. It's intended to be an alternative for IELM, and a full REPL envionment for Emacs[fn:2]. #+NAME: emacs-eshell-elisp #+BEGIN_SRC emacs-lisp @@ -2080,7 +2080,7 @@ EShell [fn:55] is a shell-like command interpreter for GNU/Emacs[fn:2] implement ** VTerm -Emacs Libvterm (VTerm)[fn:56] is a fully-fledged terminal emulator inside GNU/Emacs[fn:2] based on Libvterm[fn:57], a blazing fast C library used in Neovim[fn:43]. As a result of using compiled code (instead of Emacs Lisp[fn:42]), VTerm[fn:56] is capable, fast, and it can seamlessly handle large outputs. +Emacs Libvterm (VTerm)[fn:54] is a fully-fledged terminal emulator inside GNU/Emacs[fn:2] based on Libvterm[fn:55], a blazing fast C library used in Neovim[fn:41]. As a result of using compiled code (instead of Emacs Lisp[fn:40]), VTerm[fn:54] is capable, fast, and it can seamlessly handle large outputs. #+NAME: emacs-vterm-package #+BEGIN_SRC nix @@ -2096,7 +2096,7 @@ epkgs.vterm ** Magit -Magit[fn:58] is an interface to the Git[fn:41] version control system, implemented as a GNU/Emacs[fn:2] package written in Elisp[fn:42]. It fills the glaring gap between the Git[fn:41] command line interface and various GUIs, letting you perform trivial as well as elaborate version control tasks within a few mnemonic key presses. +Magit[fn:56] is an interface to the Git[fn:39] version control system, implemented as a GNU/Emacs[fn:2] package written in Elisp[fn:40]. It fills the glaring gap between the Git[fn:39] command line interface and various GUIs, letting you perform trivial as well as elaborate version control tasks within a few mnemonic key presses. #+NAME: emacs-magit-package #+BEGIN_SRC nix @@ -2152,7 +2152,7 @@ epkgs.hydra epkgs.elfeed #+END_SRC -Elfeed[fn:59] is an extensible web feed reader for GNU/Emacs[fn:2], support both =Atom= and =RSS=. It requires =Emacs 24.3+= and is available for download from the standard repositories. +Elfeed[fn:57] is an extensible web feed reader for GNU/Emacs[fn:2], support both =Atom= and =RSS=. It requires =Emacs 24.3+= and is available for download from the standard repositories. #+NAME: emacs-elfeed-elisp #+BEGIN_SRC emacs-lisp @@ -2181,7 +2181,7 @@ Elfeed[fn:59] is an extensible web feed reader for GNU/Emacs[fn:2], support both epkgs.org #+END_SRC -Org-mode[fn:60] is a document editing and organizing mode, designed for notes, planning, and authoring within the free software text editor GNU/Emacs[fn:2]. The name is used to encompass plain text files (such as this one) that include simple marks to indicate levels of a hierarchy, and an editor with functions that can read the markup and manipulate the hierarchy elements. +Org-mode[fn:58] is a document editing and organizing mode, designed for notes, planning, and authoring within the free software text editor GNU/Emacs[fn:2]. The name is used to encompass plain text files (such as this one) that include simple marks to indicate levels of a hierarchy, and an editor with functions that can read the markup and manipulate the hierarchy elements. #+NAME: emacs-org-elisp #+BEGIN_SRC emacs-lisp @@ -2244,7 +2244,7 @@ epkgs.websocket epkgs.simple-httpd #+END_SRC -Org Roam[fn:61] is a plain-text knowledge management system. It borrows principles from the Zettelkasten method[fn:62], providing a solution for non-hierarchical note-taking. It should also work as a plug-and-play solution for anyone already using Org Mode[fn:60] for their personal wiki (me). +Org Roam[fn:59] is a plain-text knowledge management system. It borrows principles from the Zettelkasten method[fn:60], providing a solution for non-hierarchical note-taking. It should also work as a plug-and-play solution for anyone already using Org Mode[fn:58] for their personal wiki (me). #+NAME: emacs-org-roam-elisp #+BEGIN_SRC emacs-lisp @@ -2363,7 +2363,7 @@ Org Roam[fn:61] is a plain-text knowledge management system. It borrows principl epkgs.org-drill #+END_SRC -Org Drill[fn:63] is an extension for Org Mode[fn:60] that uses a spaced repition algorithm to conduct interactive /Drill Sessions/ using Org files as sources of facts to be memorized. +Org Drill[fn:61] is an extension for Org Mode[fn:58] that uses a spaced repition algorithm to conduct interactive /Drill Sessions/ using Org files as sources of facts to be memorized. #+NAME: emacs-org-drill-elisp #+BEGIN_SRC emacs-lisp @@ -2382,7 +2382,7 @@ Org Drill[fn:63] is an extension for Org Mode[fn:60] that uses a spaced repition ** Org Agenda -The way Org Mode[fn:60] works, TODO items, time-stamped items, and tagged headlines can be scattered throughout a file, or even a number of files. To get an overview of open action items, or of events that are important for a particular date, this information must be collected, sorted, and displayed in an organized way. +The way Org Mode[fn:58] works, TODO items, time-stamped items, and tagged headlines can be scattered throughout a file, or even a number of files. To get an overview of open action items, or of events that are important for a particular date, this information must be collected, sorted, and displayed in an organized way. #+NAME: emacs-org-agenda-elisp #+BEGIN_SRC emacs-lisp @@ -2410,7 +2410,7 @@ The way Org Mode[fn:60] works, TODO items, time-stamped items, and tagged headli epkgs.org-pomodoro #+END_SRC -Org Pomodoro[fn:64] adds basic support for the Pomodoro Technique[fn:65] in GNU/Emacs[fn:2]. It can be started for the task at point, or the last task time was clocked for. Each session starts a timer of 25 minutes, finishing with a break of 5 minutes. After 4 sessions, ther will be a break of 20 minutes. All values are customizable. +Org Pomodoro[fn:62] adds basic support for the Pomodoro Technique[fn:63] in GNU/Emacs[fn:2]. It can be started for the task at point, or the last task time was clocked for. Each session starts a timer of 25 minutes, finishing with a break of 5 minutes. After 4 sessions, ther will be a break of 20 minutes. All values are customizable. #+NAME: emacs-pomodoro-elisp #+BEGIN_SRC emacs-lisp @@ -2430,7 +2430,7 @@ Org Pomodoro[fn:64] adds basic support for the Pomodoro Technique[fn:65] in GNU/ epkgs.writegood-mode #+END_SRC -Writegood Mode[fn:66] is an Emacs[fn:2] minor mode to aid in finding common writing problems. It highlights the text based on the following criteria: +Writegood Mode[fn:64] is an Emacs[fn:2] minor mode to aid in finding common writing problems. It highlights the text based on the following criteria: + Weasel Words + Passive Voice @@ -2453,7 +2453,7 @@ pkgs.aspellDicts.en-science pkgs.aspellDicts.en-computers #+END_SRC -GNU Aspell[fn:67] is a Free and Open Source spell checker designed to replace ISpell. It can be used as a library, or an independent spell checker. Its main feature is that it does a superior job of suggesting possible replacements for mis-spelled words than any other spell checker for the English language. +GNU Aspell[fn:65] is a Free and Open Source spell checker designed to replace ISpell. It can be used as a library, or an independent spell checker. Its main feature is that it does a superior job of suggesting possible replacements for mis-spelled words than any other spell checker for the English language. #+NAME: emacs-aspell-elisp #+BEGIN_SRC emacs-lisp @@ -2468,7 +2468,7 @@ GNU Aspell[fn:67] is a Free and Open Source spell checker designed to replace IS ** TexLive -TeX Live[fn:68] is a free software distributution for the TeX typesetting system that includes major TeX-related programs, macro packages, and fonts. Since TeX Live consists of /thousands/ of packages, to make managing it easier, NixOS replicates the organization of Tex Live into /schemes/ and /collections/[fn:69]: +TeX Live[fn:66] is a free software distributution for the TeX typesetting system that includes major TeX-related programs, macro packages, and fonts. Since TeX Live consists of /thousands/ of packages, to make managing it easier, NixOS replicates the organization of Tex Live into /schemes/ and /collections/[fn:67]: | Name | Derivation | Comment | |---------+---------------------------------+------------------------------------------------------------| @@ -2490,7 +2490,7 @@ pkgs.texlive.combined.scheme-full epkgs.ob-http #+END_SRC -It's possible to make HTTP requests from Org Mode buffers using ob-http[fn:70], this relies on Org Babel being present and configured properly. +It's possible to make HTTP requests from Org Mode buffers using ob-http[fn:68], this relies on Org Babel being present and configured properly. #+NAME: emacs-http-elisp #+BEGIN_SRC emacs-lisp @@ -2507,7 +2507,7 @@ It's possible to make HTTP requests from Org Mode buffers using ob-http[fn:70], epkgs.ox-hugo #+END_SRC -Ox-Hugo[fn:71] is an Org-Mode[fn:60] exporter for Hugo[fn:33] compabile markdown. My dotfiles are a result of this, and are available to view here https://chrishayward.xyz/dotfiles/. +Ox-Hugo[fn:69] is an Org-Mode[fn:58] exporter for Hugo[fn:30] compabile markdown. My dotfiles are a result of this, and are available to view here https://chrishayward.xyz/dotfiles/. #+NAME: emacs-hugo-elisp #+BEGIN_SRC emacs-lisp @@ -2548,7 +2548,7 @@ Ox-Hugo[fn:71] is an Org-Mode[fn:60] exporter for Hugo[fn:33] compabile markdown pkgs.pass #+END_SRC -With Pass[fn:72], each password lives inside of an encrypted =gpg= file, whose name is the title of the website or resource that requires the password. These encrypted files may be organized into meaningful folder hierarchies, compies from computer to computer, and in general, manipulated using standard command line tools. +With Pass[fn:70], each password lives inside of an encrypted =gpg= file, whose name is the title of the website or resource that requires the password. These encrypted files may be organized into meaningful folder hierarchies, compies from computer to computer, and in general, manipulated using standard command line tools. #+NAME: emacs-pass-package #+BEGIN_SRC nix @@ -2580,7 +2580,7 @@ epkgs.docker epkgs.dockerfile-mode #+END_SRC -Manage Docker from inside of Emacs using Docker.el[fn:73]. This is a full docker porcelain similar to Magit, allowing complete control of a Docker system. Add syntax highlighting to Dockerfiles using dockerfile-mode[fn:74] from Spotify. +Manage Docker from inside of Emacs using Docker.el[fn:71]. This is a full docker porcelain similar to Magit, allowing complete control of a Docker system. Add syntax highlighting to Dockerfiles using dockerfile-mode[fn:72] from Spotify. #+NAME: emacs-docker-elisp #+BEGIN_SRC emacs-lisp @@ -2694,7 +2694,7 @@ mu index epkgs.projectile #+END_SRC -Projectile[fn:75] is a project interaction library for GNU/Emacs[fn:2]. Its goal is to provide a nice set of features operating on a project level, without introducing external dependencies. +Projectile[fn:73] is a project interaction library for GNU/Emacs[fn:2]. Its goal is to provide a nice set of features operating on a project level, without introducing external dependencies. #+NAME: emacs-projectile-elisp #+BEGIN_SRC emacs-lisp @@ -2711,7 +2711,7 @@ epkgs.lsp-mode epkgs.lsp-ui #+END_SRC -The Language Server Protocol (LSP)[fn:76] defines the protocol used between an Editor or IDE, and a language server that provides features like: +The Language Server Protocol (LSP)[fn:74] defines the protocol used between an Editor or IDE, and a language server that provides features like: + Auto Complete + Go To Defintion @@ -2735,7 +2735,7 @@ The Language Server Protocol (LSP)[fn:76] defines the protocol used between an E epkgs.ccls #+END_SRC -Emacs CCLS[fn:77] is a client for CCLS, a C/C++/Objective-C language server supporting multi-million line C++ code bases, powered by libclang. +Emacs CCLS[fn:75] is a client for CCLS, a C/C++/Objective-C language server supporting multi-million line C++ code bases, powered by libclang. #+NAME: emacs-ccls-elisp #+BEGIN_SRC emacs-lisp @@ -2758,7 +2758,7 @@ Emacs CCLS[fn:77] is a client for CCLS, a C/C++/Objective-C language server supp epkgs.company #+END_SRC -Company[fn:78] is a text completion framework for GNU/Emacs[fn:2]. The name stands for =Complete Anything=. It uses pluggable back-ends and front-ends to retieve and display completion candidates. +Company[fn:76] is a text completion framework for GNU/Emacs[fn:2]. The name stands for =Complete Anything=. It uses pluggable back-ends and front-ends to retieve and display completion candidates. #+NAME: emacs-company-elisp #+BEGIN_SRC emacs-lisp @@ -2777,7 +2777,7 @@ Company[fn:78] is a text completion framework for GNU/Emacs[fn:2]. The name stan epkgs.go-mode #+END_SRC -Go Mode[fn:79] is a major mode for editing Golang[fn:13] source code in GNU/Emacs[fn:2]. +Go Mode[fn:77] is a major mode for editing Golang[fn:8] source code in GNU/Emacs[fn:2]. #+NAME: emacs-golang-elisp #+BEGIN_SRC emacs-lisp @@ -2797,7 +2797,7 @@ Go Mode[fn:79] is a major mode for editing Golang[fn:13] source code in GNU/Emac epkgs.rustic #+END_SRC -Rustic[fn:78] is a fork of rust-mode that integrates well with the Language Server Protocol[fn:72]. Include the rust shell before launching GNU/Emacs[fn:2] to use this! +Rustic[fn:76] is a fork of rust-mode that integrates well with the Language Server Protocol[fn:70]. Include the rust shell before launching GNU/Emacs[fn:2] to use this! #+NAME: emacs-rustic-elisp #+BEGIN_SRC emacs-lisp @@ -2813,7 +2813,7 @@ Rustic[fn:78] is a fork of rust-mode that integrates well with the Language Serv epkgs.pretty-mode #+END_SRC -The built in Python Mode[fn:80] has a nice feature set for working with Python[fn:20] code in GNU/Emacs[fn:2]. It is complimented with the addition of an LSP[fn:76] server. These tools are included in the Development Shell[fn:12] for Python[fn:20]. +The built in Python Mode[fn:78] has a nice feature set for working with Python[fn:15] code in GNU/Emacs[fn:2]. It is complimented with the addition of an LSP[fn:74] server. These tools are included in the Development Shell[fn:7] for Python[fn:15]. #+NAME: emacs-python-elisp #+BEGIN_SRC emacs-lisp @@ -2837,14 +2837,14 @@ epkgs.protobuf-mode pkgs.plantuml #+END_SRC -PlantUML[fn:81] is an open-source tool allowing users to create diagrams from a plain-text language. Besides various UML diagrams, PlantUML[fn:81] has support for various other software developmented related formats, as well as visualizations of =JSON= and =YAML= files. +PlantUML[fn:79] is an open-source tool allowing users to create diagrams from a plain-text language. Besides various UML diagrams, PlantUML[fn:79] has support for various other software developmented related formats, as well as visualizations of =JSON= and =YAML= files. #+NAME: emacs-plantuml-package #+BEGIN_SRC nix epkgs.plantuml-mode #+END_SRC -PlantUML Mode[fn:82] is a major mode for editing PlantUML[fn:81] sources in GNU/Emacs[fn:2]. +PlantUML Mode[fn:80] is a major mode for editing PlantUML[fn:79] sources in GNU/Emacs[fn:2]. #+NAME: emacs-plantuml-elisp #+BEGIN_SRC emacs-lisp @@ -2866,7 +2866,7 @@ epkgs.ivy-posframe epkgs.ivy-prescient #+END_SRC -Ivy (Swiper)[fn:83] is a generic completion mechanism for GNU/Emacs[fn:2]. While operating similarily to other completion schemes like =icomplete-mode=, it aims to be more efficient, smaller, simpler, and smoother to use, while remaining highly customizable. +Ivy (Swiper)[fn:81] is a generic completion mechanism for GNU/Emacs[fn:2]. While operating similarily to other completion schemes like =icomplete-mode=, it aims to be more efficient, smaller, simpler, and smoother to use, while remaining highly customizable. #+NAME: emacs-swiper-elisp #+BEGIN_SRC emacs-lisp @@ -2907,7 +2907,7 @@ It's possible to control the frame opacity in GNU/Emacs[fn:2]. Unlike other tran pkgs.brightnessctl #+END_SRC -The Desktop Environment[fn:84] package provides commands and a global minor mode for controlling your GNU/Linux[fn:1] desktop from within GNU/Emacs[fn:2]. +The Desktop Environment[fn:82] package provides commands and a global minor mode for controlling your GNU/Linux[fn:27] desktop from within GNU/Emacs[fn:2]. #+NAME: emacs-desktop-package #+BEGIN_SRC nix @@ -2930,7 +2930,7 @@ You can control the brightness, volume, take screenshots, and lock / unlock the epkgs.doom-themes #+END_SRC -Doom Themes[fn:85] is a theme megapack for GNU/Emacs[fn:2], inspired by community favourites. +Doom Themes[fn:83] is a theme megapack for GNU/Emacs[fn:2], inspired by community favourites. #+NAME: emacs-doom-themes-elisp #+BEGIN_SRC emacs-lisp @@ -2955,7 +2955,7 @@ Doom Themes[fn:85] is a theme megapack for GNU/Emacs[fn:2], inspired by communit epkgs.doom-modeline #+END_SRC -Doom Modeline[fn:85] is a fancy and fast modeline inspired by minimalism design. It's integrated into Centaur Emacs, Doom Emacs, and Spacemacs. +Doom Modeline[fn:83] is a fancy and fast modeline inspired by minimalism design. It's integrated into Centaur Emacs, Doom Emacs, and Spacemacs. #+NAME: emacs-doom-modeline-elisp #+BEGIN_SRC emacs-lisp @@ -2967,172 +2967,172 @@ Doom Modeline[fn:85] is a fancy and fast modeline inspired by minimalism design. * Footnotes -[fn:1] https://gnu.org +[fn:1] https://github.com/nix-community/emacs-overlay [fn:2] https://gnu.org/software/emacs/ -[fn:3] https://literateprogramming.com/knuthweb.pdf +[fn:3] https://github.com/nixos/nixos-hardware -[fn:4] https://docker.org +[fn:4] https://nixos.org/manual/nixos/stable -[fn:5] https://nixos.org/manual/nixos/stable +[fn:5] https://github.com/t184256/nix-on-droid [fn:6] https://nixos.org/manual/nix/stable -[fn:7] https://nixos.org/manual/nixpkgs/stable +[fn:7] https://nixos.org/manual/nix/unstable/command-ref/nix-shell.html -[fn:8] https://github.com/nix-community/home-manager +[fn:8] https://golang.org -[fn:9] https://github.com/nix-community/emacs-overlay +[fn:9] https://rust-lang.org -[fn:10] https://github.com/nixos/nixos-hardware +[fn:10] https://nodejs.org -[fn:11] https://github.com/t184256/nix-on-droid +[fn:11] https://openjdk.java.net -[fn:12] https://nixos.org/manual/nix/unstable/command-ref/nix-shell.html +[fn:12] https://grpc.io -[fn:13] https://golang.org +[fn:13] https://iso.org/standard/74528.html -[fn:14] https://rust-lang.org +[fn:14] https://en.wikipedia.org/wiki/C++/ -[fn:15] https://nodejs.org +[fn:15] https://python.org -[fn:16] https://openjdk.java.net +[fn:16] https://docs.docker.com/compose/ -[fn:17] https://grpc.io +[fn:17] https://docker.org -[fn:18] https://iso.org/standard/74528.html +[fn:18] https://docs.docker.com/machine/ -[fn:19] https://en.wikipedia.org/wiki/C++/ +[fn:19] https://heroku.com -[fn:20] https://python.org +[fn:20] https://qemu.org -[fn:21] https://docs.docker.com/compose/ +[fn:21] https://github.com/ch11ng/exwm -[fn:22] https://docs.docker.com/machine/ +[fn:22] https://laptopmedia.com/laptop-specs/acer-nitro-5-an515-53-2 -[fn:23] https://heroku.com +[fn:23] https://raspberrypi.org/products/raspberry-pi-400/ -[fn:24] https://qemu.org +[fn:24] https://www.raspberrypi.org/products/raspberry-pi-4-model-b/ -[fn:25] https://github.com/ch11ng/exwm +[fn:25] https://samsung.com/us/mobile/galaxy-s10/buy/ -[fn:26] https://laptopmedia.com/laptop-specs/acer-nitro-5-an515-53-2 +[fn:26] https://x.org/wiki/ -[fn:27] https://raspberrypi.org/products/raspberry-pi-400/ +[fn:27] https://gnu.org -[fn:28] https://www.raspberrypi.org/products/raspberry-pi-4-model-b/ +[fn:28] https://wayland.freedesktop.org -[fn:29] https://samsung.com/us/mobile/galaxy-s10/buy/ +[fn:29] https://openssh.com -[fn:30] https://x.org/wiki/ +[fn:30] https://gohugo.io -[fn:31] https://wayland.freedesktop.org +[fn:31] https://nixos.wiki/wiki/Flakes -[fn:32] https://openssh.com +[fn:32] https://nix-community.cachix.org -[fn:33] https://gohugo.io +[fn:33] https://nixos.wiki/wiki/Nvidia -[fn:34] https://nixos.wiki/wiki/Flakes +[fn:34] https://en.wikipedia.org/wiki/Firefox -[fn:35] https://nix-community.cachix.org +[fn:35] https://jellyfin.org -[fn:36] https://nixos.wiki/wiki/Nvidia +[fn:36] https://moonlight-stream.org -[fn:37] https://en.wikipedia.org/wiki/Firefox +[fn:37] https://teamviewer.com -[fn:38] https://jellyfin.org +[fn:38] https://github.com/nix-community/home-manager -[fn:39] https://moonlight-stream.org +[fn:39] https://git-scm.com -[fn:40] https://teamviewer.com +[fn:40] https://emacswiki.org/emacs/LearnEmacsLisp -[fn:41] https://git-scm.com +[fn:41] https://neovim.io -[fn:42] https://emacswiki.org/emacs/LearnEmacsLisp +[fn:42] https://gtk.org -[fn:43] https://neovim.io +[fn:43] https://github.com/nixos/nix-mode -[fn:44] https://gtk.org +[fn:44] https://evil.readthedocs.io/en/latest/overview.html -[fn:45] https://github.com/nixos/nix-mode +[fn:45] https://github.com/noctuid/general.el -[fn:46] https://evil.readthedocs.io/en/latest/overview.html +[fn:46] https://github.com/justbur/emacs-which-key -[fn:47] https://github.com/noctuid/general.el +[fn:47] https://emacswiki.org/emacs/eww -[fn:48] https://github.com/justbur/emacs-which-key +[fn:48] https://gnu.org/software/emacs/erc.html -[fn:49] https://emacswiki.org/emacs/eww +[fn:49] https://emacswiki.org/emacs/DiredMode -[fn:50] https://gnu.org/software/emacs/erc.html +[fn:50] https://emacswiki.org/emacs/DiredExtra#Dired_X -[fn:51] https://emacswiki.org/emacs/DiredMode +[fn:51] https://github.com/domtronn/all-the-icons.el -[fn:52] https://emacswiki.org/emacs/DiredExtra#Dired_X +[fn:52] https://github.com/iqbalansari/emacs-emojify -[fn:53] https://github.com/domtronn/all-the-icons.el +[fn:53] https://gnu.org/software/emacs/manual/html_mono/eshell.html -[fn:54] https://github.com/iqbalansari/emacs-emojify +[fn:54] https://github.com/akermu/emacs-libvterm -[fn:55] https://gnu.org/software/emacs/manual/html_mono/eshell.html +[fn:55] https://github.com/neovim/libvterm -[fn:56] https://github.com/akermu/emacs-libvterm +[fn:56] https://magit.vc -[fn:57] https://github.com/neovim/libvterm +[fn:57] https://github.com/skeeto/elfeed -[fn:58] https://magit.vc +[fn:58] https://orgmode.org -[fn:59] https://github.com/skeeto/elfeed +[fn:59] https://github.com/org-roam/org-roam -[fn:60] https://orgmode.org +[fn:60] https://zettelkasten.de -[fn:61] https://github.com/org-roam/org-roam +[fn:61] https://orgmode.org/worg/org-contrib/org-drill.html -[fn:62] https://zettelkasten.de +[fn:62] https://github.com/marcinkoziej/org-pomodoro -[fn:63] https://orgmode.org/worg/org-contrib/org-drill.html +[fn:63] https://en.wikipedia.org/wiki/Pomodoro_Technique -[fn:64] https://github.com/marcinkoziej/org-pomodoro +[fn:64] https://github.com/bnbeckwith/writegood-mode -[fn:65] https://en.wikipedia.org/wiki/Pomodoro_Technique +[fn:65] https://aspell.net -[fn:66] https://github.com/bnbeckwith/writegood-mode +[fn:66] https://wikipedia.org/wiki/Tex_Live -[fn:67] https://aspell.net +[fn:67] https://nixos.wiki/wiki/TexLive -[fn:68] https://wikipedia.org/wiki/Tex_Live +[fn:68] https://github.com/zweifisch/ob-http -[fn:69] https://nixos.wiki/wiki/TexLive +[fn:69] https://oxhugo.scripter.co -[fn:70] https://github.com/zweifisch/ob-http +[fn:70] https://password-store.org -[fn:71] https://oxhugo.scripter.co +[fn:71] https://github.com/Silex/docker.el -[fn:72] https://password-store.org +[fn:72] https://github.com/spotify/dockerfile-mode -[fn:73] https://github.com/Silex/docker.el +[fn:73] https://projectile.mx -[fn:74] https://github.com/spotify/dockerfile-mode +[fn:74] https://microsoft.github.io/language-server-protocol -[fn:75] https://projectile.mx +[fn:75] https://github.com/MaskRay/emacs-ccls -[fn:76] https://microsoft.github.io/language-server-protocol +[fn:76] https://company-mode.github.io -[fn:77] https://github.com/MaskRay/emacs-ccls +[fn:77] https://emacswiki.org/emacs/GoMode -[fn:78] https://company-mode.github.io +[fn:78] https://plantuml.com -[fn:79] https://emacswiki.org/emacs/GoMode +[fn:79] https://github.com/skuro/plantuml-mode -[fn:80] https://plantuml.com +[fn:80] https://github.com/abo-abo/swiper -[fn:81] https://github.com/skuro/plantuml-mode +[fn:81] https://github.com/DamienCassou/desktop-environment -[fn:82] https://github.com/abo-abo/swiper +[fn:82] https://github.com/hlissner/emacs-doom-themes -[fn:83] https://github.com/DamienCassou/desktop-environment +[fn:83] https://github.com/seagle0128/doom-modeline -[fn:84] https://github.com/hlissner/emacs-doom-themes +[fn:84] https://nixos.org/manual/nixpkgs/stable -[fn:85] https://github.com/seagle0128/doom-modeline +[fn:85] https://literateprogramming.com/knuthweb.pdf