From 40d7a115c0743595a21a13c8739277e63ab6e219 Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Tue, 15 Jun 2021 18:31:56 -0400 Subject: [PATCH] Add teamviewer module --- README.org | 189 +++++++++++++++++++++++------------------ flake.nix | 1 + modules/teamviewer.nix | 8 ++ 3 files changed, 115 insertions(+), 83 deletions(-) create mode 100644 modules/teamviewer.nix diff --git a/README.org b/README.org index 27c9438..cdfc181 100644 --- a/README.org +++ b/README.org @@ -272,6 +272,7 @@ acernitro = nixpkgs.lib.nixosSystem { <> <> <> + <> <> ]; }; @@ -646,6 +647,26 @@ Moonlight[fn:24] is an open-source implementation of NVIDIA's GameStream Protoco } #+END_SRC +** Teamviewer + +#+NAME: module-teamviewer +#+BEGIN_SRC nix +./modules/teamviewer.nix +#+END_SRC + +The Teamviewer[fn:25] remote connectivity cloud platform enables secure remote access to any device, across platforms, from anywhere, anytime. Teamviewer[fn:25] 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 +# <> +{ pkgs, ... }: + +{ + environment.systemPackages = [ + pkgs.teamviewer + ]; +} +#+END_SRC + ** Home Manager Home Manager[fn:7] 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. @@ -674,7 +695,7 @@ inputs.home-manager.nixosModules.home-manager { ./modules/git.nix #+END_SRC -Git[fn:25] 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:26] 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 # <> @@ -701,7 +722,7 @@ Git[fn:25] is a free and open source distributed version control system designed ./modules/gpg.nix #+END_SRC -GNU Privacy Guard[fn:26] 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:27] 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 # <> @@ -724,7 +745,7 @@ GNU Privacy Guard[fn:26] is a free-software replacement for Symantec's PGP crypt ./modules/vim.nix #+END_SRC -Neovim[fn:27] is a project that seeks to aggressively refactor Vim in order to: +Neovim[fn:28] is a project that seeks to aggressively refactor Vim in order to: + Simplify maintenance and encourage contributions + Split the work between multiple developers @@ -764,7 +785,7 @@ Neovim[fn:27] is a project that seeks to aggressively refactor Vim in order to: ./modules/gtk.nix #+END_SRC -GTK[fn:28] 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:20] and X11[fn:19] windowing systems. +GTK[fn:29] 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:20] and X11[fn:19] windowing systems. #+BEGIN_SRC nix :noweb yes :tangle modules/gtk.nix # <> @@ -804,7 +825,7 @@ GTK[fn:28] 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:26], 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:27], a dialect of the Lisp programming language with extensions to support text editing. Other features include: + Highly customizable + Full Unicopde support @@ -1013,7 +1034,7 @@ Define some methods for interaction between GNU/Emacs[fn:2], and the systems und pkgs.nixfmt #+END_SRC -Nix-mode[fn:29] is an Emacs[fn:2] major mode for editing Nix[fn:5] expressions. This provides basic handling of =.nix= files. Syntax highlighting and indentation support using =SMIE= are provided. +Nix-mode[fn:30] is an Emacs[fn:2] major mode for editing Nix[fn:5] 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 @@ -1022,7 +1043,7 @@ epkgs.nix-mode ** Evil Mode -Evil[fn:12] is an extensible VI layer for GNU/Emacs[fn:2]. It emulates the main features of Vim[fn:27], turning GNU/Emacs[fn:2] into a modal editor. +Evil[fn:12] is an extensible VI layer for GNU/Emacs[fn:2]. It emulates the main features of Vim[fn:28], turning GNU/Emacs[fn:2] into a modal editor. #+NAME: emacs-evil-package #+BEGIN_SRC nix @@ -1032,7 +1053,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:12] is extensible in Emacs Lisp[fn:26]. +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:12] is extensible in Emacs Lisp[fn:27]. #+NAME: emacs-evil-elisp #+BEGIN_SRC emacs-lisp @@ -1142,7 +1163,7 @@ home.file.".xinitrc" = { epkgs.general #+END_SRC -General[fn:30] 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:31] 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 @@ -1194,7 +1215,7 @@ General[fn:30] provides a more convenient method for binding keys in Emacs[fn:2] ** Which Key -Which-key[fn:31] 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:32] 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 @@ -1211,7 +1232,7 @@ epkgs.which-key ** EWW -The Emacs Web Wowser[fn:32] is a Web browser written in Emacs Lisp[fn:26] based on the ~shr.el~ library. It's my primary browser when it comes to text-based browsing. +The Emacs Web Wowser[fn:33] is a Web browser written in Emacs Lisp[fn:27] 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 @@ -1233,7 +1254,7 @@ The Emacs Web Wowser[fn:32] is a Web browser written in Emacs Lisp[fn:26] based epkgs.dired-single #+END_SRC -Dired[fn:33] 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:34] provides extra functionality for Dired[fn:33]. +Dired[fn:34] 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:35] provides extra functionality for Dired[fn:34]. #+NAME: emacs-dired-elisp #+BEGIN_SRC emacs-lisp @@ -1260,7 +1281,7 @@ epkgs.all-the-icons epkgs.all-the-icons-dired #+END_SRC -All The Icons[fn:35] is a utility package to collect various Icon Fonts and prioritize them within GNU/Emacs[fn:2]. +All The Icons[fn:36] 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 @@ -1278,7 +1299,7 @@ All The Icons[fn:35] is a utility package to collect various Icon Fonts and prio epkgs.emojify #+END_SRC -Emojify[fn:36] 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:37] 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 @@ -1293,7 +1314,7 @@ Emojify[fn:36] is an Emacs[fn:2] extension to display Emojis. It can display Git epkgs.eshell-prompt-extras #+END_SRC -EShell [fn:37] is a shell-like command interpreter for GNU/Emacs[fn:2] implemented in Emacs Lisp[fn:26]. 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:38] is a shell-like command interpreter for GNU/Emacs[fn:2] implemented in Emacs Lisp[fn:27]. 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 @@ -1312,7 +1333,7 @@ EShell [fn:37] is a shell-like command interpreter for GNU/Emacs[fn:2] implement ** VTerm -Emacs Libvterm (VTerm)[fn:38] is a fully-fledged terminal emulator inside GNU/Emacs[fn:2] based on Libvterm[fn:39], a blazing fast C library used in Neovim[fn:27]. As a result of using compiled code (instead of Emacs Lisp[fn:26]), VTerm[fn:38] is capable, fast, and it can seamlessly handle large outputs. +Emacs Libvterm (VTerm)[fn:39] is a fully-fledged terminal emulator inside GNU/Emacs[fn:2] based on Libvterm[fn:40], a blazing fast C library used in Neovim[fn:28]. As a result of using compiled code (instead of Emacs Lisp[fn:27]), VTerm[fn:39] is capable, fast, and it can seamlessly handle large outputs. #+NAME: emacs-vterm-package #+BEGIN_SRC nix @@ -1328,7 +1349,7 @@ epkgs.vterm ** Magit -Magit[fn:40] is an interface to the Git[fn:25] version control system, implemented as a GNU/Emacs[fn:2] package written in Elisp[fn:26]. It fills the glaring gap between the Git[fn:25] 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:41] is an interface to the Git[fn:26] version control system, implemented as a GNU/Emacs[fn:2] package written in Elisp[fn:27]. It fills the glaring gap between the Git[fn:26] 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 @@ -1375,7 +1396,7 @@ epkgs.magit epkgs.elfeed #+END_SRC -Elfeed[fn:41] 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:42] 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. | Key | Command | |-----+---------| @@ -1406,7 +1427,7 @@ Elfeed[fn:41] is an extensible web feed reader for GNU/Emacs[fn:2], support both epkgs.org #+END_SRC -Org-mode[fn:42] 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:43] 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 @@ -1446,7 +1467,7 @@ epkgs.org-roam epkgs.org-roam-server #+END_SRC -Org Roam[fn:43] is a plain-text knowledge management system. It borrows principles from the Zettelkasten method[fn:44], 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:42] for their personal wiki (me). Org Roam Server[fn:45] is a Web application to visualize the Org Roam[fn:43] database. Although it should automatically reload if there's a change in the database, it can be done so manually by clicking the =reload= button on the Web interface. +Org Roam[fn:44] is a plain-text knowledge management system. It borrows principles from the Zettelkasten method[fn:45], 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:43] for their personal wiki (me). Org Roam Server[fn:46] is a Web application to visualize the Org Roam[fn:44] database. Although it should automatically reload if there's a change in the database, it can be done so manually by clicking the =reload= button on the Web interface. #+NAME: emacs-org-roam-elisp #+BEGIN_SRC emacs-lisp @@ -1556,7 +1577,7 @@ Org Roam[fn:43] is a plain-text knowledge management system. It borrows principl epkgs.org-drill #+END_SRC -Org Drill[fn:46] is an extension for Org Mode[fn:42] that uses a spaced repition algorithm to conduct interactive /Drill Sessions/ using Org files as sources of facts to be memorized. +Org Drill[fn:47] is an extension for Org Mode[fn:43] 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 @@ -1570,7 +1591,7 @@ Org Drill[fn:46] is an extension for Org Mode[fn:42] that uses a spaced repition ** Org Agenda -The way Org Mode[fn:42] 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:43] 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 @@ -1602,7 +1623,7 @@ The way Org Mode[fn:42] works, TODO items, time-stamped items, and tagged headli epkgs.org-pomodoro #+END_SRC -Org Pomodoro[fn:47] adds basic support for the Pomodoro Technique[fn:48] 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:48] adds basic support for the Pomodoro Technique[fn:49] 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 @@ -1622,7 +1643,7 @@ Org Pomodoro[fn:47] adds basic support for the Pomodoro Technique[fn:48] in GNU/ epkgs.writegood-mode #+END_SRC -Writegood Mode[fn:49] 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:50] 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 @@ -1645,7 +1666,7 @@ pkgs.aspellDicts.en-science pkgs.aspellDicts.en-computers #+END_SRC -GNU Aspell[fn:50] 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:51] 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 @@ -1665,14 +1686,14 @@ GNU Aspell[fn:50] is a Free and Open Source spell checker designed to replace IS pkgs.hugo #+END_SRC -Hugo[fn:51] is one of the most popular open-source static site generators. +Hugo[fn:52] is one of the most popular open-source static site generators. #+NAME: emacs-hugo-package #+BEGIN_SRC nix epkgs.ox-hugo #+END_SRC -Ox-Hugo[fn:52] is an Org-Mode[fn:42] exporter for Hugo[fn:51] compabile markdown. I post nonsense on my Personal Blog[fn:53], and share my notes on various textbooks, articles, and software Here[fn:54]. +Ox-Hugo[fn:53] is an Org-Mode[fn:43] exporter for Hugo[fn:52] compabile markdown. I post nonsense on my Personal Blog[fn:54], and share my notes on various textbooks, articles, and software Here[fn:55]. #+NAME: emacs-hugo-elisp #+BEGIN_SRC emacs-lisp @@ -1732,7 +1753,7 @@ Ox-Hugo[fn:52] is an Org-Mode[fn:42] exporter for Hugo[fn:51] compabile markdown epkgs.ox-reveal #+END_SRC -Reveal.js[fn:55] is an open source HTML presentation framework. It enables anyone with a web browser to create fully-featured and beautiful presentations for free. Presentations with Reveal.js[fn:55] are built on open web technologies. That means anything you can do on the web, you can do in your presentation. Ox Reveal[fn:56] is an Org Mode[fn:42] export backend. +Reveal.js[fn:56] is an open source HTML presentation framework. It enables anyone with a web browser to create fully-featured and beautiful presentations for free. Presentations with Reveal.js[fn:56] are built on open web technologies. That means anything you can do on the web, you can do in your presentation. Ox Reveal[fn:57] is an Org Mode[fn:43] export backend. #+NAME: emacs-reveal-elisp #+BEGIN_SRC emacs-lisp @@ -1772,7 +1793,7 @@ Reveal.js[fn:55] is an open source HTML presentation framework. It enables anyon pkgs.pass #+END_SRC -With Pass[fn:57], 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:58], 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 @@ -1900,7 +1921,7 @@ mu index epkgs.projectile #+END_SRC -Projectile[fn:58] 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:59] 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 @@ -1917,7 +1938,7 @@ epkgs.lsp-mode epkgs.lsp-ui #+END_SRC -The Language Server Protocol (LSP)[fn:59] defines the protocol used between an Editor or IDE, and a language server that provides features like: +The Language Server Protocol (LSP)[fn:60] defines the protocol used between an Editor or IDE, and a language server that provides features like: + Auto Complete + Go To Defintion @@ -1941,7 +1962,7 @@ The Language Server Protocol (LSP)[fn:59] defines the protocol used between an E epkgs.company #+END_SRC -Company[fn:60] 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:61] 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 @@ -1960,7 +1981,7 @@ Company[fn:60] is a text completion framework for GNU/Emacs[fn:2]. The name stan epkgs.go-mode #+END_SRC -Go Mode[fn:61] is a major mode for editing Golang[fn:14] source code in GNU/Emacs[fn:2]. +Go Mode[fn:62] is a major mode for editing Golang[fn:14] source code in GNU/Emacs[fn:2]. #+NAME: emacs-golang-elisp #+BEGIN_SRC emacs-lisp @@ -1980,7 +2001,7 @@ Go Mode[fn:61] is a major mode for editing Golang[fn:14] source code in GNU/Emac epkgs.pretty-mode #+END_SRC -The built in Python Mode[fn:62] has a nice feature set for working with Python[fn:18] code in GNU/Emacs[fn:2]. It is complimented with the addition of an LSP[fn:59] server. These tools are included in the Development Shell[fn:13] for Python[fn:18]. +The built in Python Mode[fn:63] has a nice feature set for working with Python[fn:18] code in GNU/Emacs[fn:2]. It is complimented with the addition of an LSP[fn:60] server. These tools are included in the Development Shell[fn:13] for Python[fn:18]. #+NAME: emacs-python-elisp #+BEGIN_SRC emacs-lisp @@ -1997,14 +2018,14 @@ The built in Python Mode[fn:62] has a nice feature set for working with Python[f pkgs.plantuml #+END_SRC -PlantUML[fn:63] is an open-source tool allowing users to create diagrams from a plain-text language. Besides various UML diagrams, PlantUML[fn:63] has support for various other software developmented related formats, as well as visualizations of =JSON= and =YAML= files. +PlantUML[fn:64] is an open-source tool allowing users to create diagrams from a plain-text language. Besides various UML diagrams, PlantUML[fn:64] 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:64] is a major mode for editing PlantUML[fn:63] sources in GNU/Emacs[fn:2]. +PlantUML Mode[fn:65] is a major mode for editing PlantUML[fn:64] sources in GNU/Emacs[fn:2]. #+NAME: emacs-plantuml-elisp #+BEGIN_SRC emacs-lisp @@ -2023,7 +2044,7 @@ epkgs.ivy-posframe epkgs.ivy-prescient #+END_SRC -Ivy (Swiper)[fn:65] 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:66] 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 @@ -2064,7 +2085,7 @@ It's possible to control the frame opacity in GNU/Emacs[fn:2]. Unlike other tran epkgs.doom-themes #+END_SRC -Doom Themes[fn:66] is a theme megapack for GNU/Emacs[fn:2], inspired by community favourites. +Doom Themes[fn:67] is a theme megapack for GNU/Emacs[fn:2], inspired by community favourites. #+NAME: emacs-doom-themes-elisp #+BEGIN_SRC emacs-lisp @@ -2088,7 +2109,7 @@ Doom Themes[fn:66] is a theme megapack for GNU/Emacs[fn:2], inspired by communit epkgs.doom-modeline #+END_SRC -Doom Modeline[fn:67] is a fancy and fast modeline inspired by minimalism design. It's integrated into Centaur Emacs, Doom Emacs, and Spacemacs. +Doom Modeline[fn:68] 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 @@ -2148,90 +2169,92 @@ Doom Modeline[fn:67] is a fancy and fast modeline inspired by minimalism design. [fn:24] https://moonlight-stream.org -[fn:25] https://git-scm.com +[fn:25] https://teamviewer.com + +[fn:26] https://git-scm.com -[fn:26] https://emacswiki.org/emacs/LearnEmacsLisp +[fn:27] https://emacswiki.org/emacs/LearnEmacsLisp -[fn:27] https://neovim.io +[fn:28] https://neovim.io -[fn:28] https://gtk.org +[fn:29] https://gtk.org -[fn:29] https://github.com/nixos/nix-mode +[fn:30] https://github.com/nixos/nix-mode -[fn:30] https://github.com/noctuid/general.el +[fn:31] https://github.com/noctuid/general.el -[fn:31] https://github.com/justbur/emacs-which-key +[fn:32] https://github.com/justbur/emacs-which-key -[fn:32] https://emacswiki.org/emacs/eww +[fn:33] https://emacswiki.org/emacs/eww -[fn:33] https://emacswiki.org/emacs/DiredMode +[fn:34] https://emacswiki.org/emacs/DiredMode -[fn:34] https://emacswiki.org/emacs/DiredExtra#Dired_X +[fn:35] https://emacswiki.org/emacs/DiredExtra#Dired_X -[fn:35] https://github.com/domtronn/all-the-icons.el +[fn:36] https://github.com/domtronn/all-the-icons.el -[fn:36] https://github.com/iqbalansari/emacs-emojify +[fn:37] https://github.com/iqbalansari/emacs-emojify -[fn:37] https://gnu.org/software/emacs/manual/html_mono/eshell.html +[fn:38] https://gnu.org/software/emacs/manual/html_mono/eshell.html -[fn:38] https://github.com/akermu/emacs-libvterm +[fn:39] https://github.com/akermu/emacs-libvterm -[fn:39] https://github.com/neovim/libvterm +[fn:40] https://github.com/neovim/libvterm -[fn:40] https://magit.vc +[fn:41] https://magit.vc -[fn:41] https://github.com/skeeto/elfeed +[fn:42] https://github.com/skeeto/elfeed -[fn:42] https://orgmode.org +[fn:43] https://orgmode.org -[fn:43] https://github.com/org-roam/org-roam +[fn:44] https://github.com/org-roam/org-roam -[fn:44] https://zettelkasten.de +[fn:45] https://zettelkasten.de -[fn:45] https://github.com/org-roam/org-roam-server +[fn:46] https://github.com/org-roam/org-roam-server -[fn:46] https://orgmode.org/worg/org-contrib/org-drill.html +[fn:47] https://orgmode.org/worg/org-contrib/org-drill.html -[fn:47] https://marcinkoziej/org-pomodoro +[fn:48] https://marcinkoziej/org-pomodoro -[fn:48] https://en.wikipedia.org/wiki/Pomodoro_Technique +[fn:49] https://en.wikipedia.org/wiki/Pomodoro_Technique -[fn:49] https://github.com/bnbeckwith/writegood-mode +[fn:50] https://github.com/bnbeckwith/writegood-mode -[fn:50] https://aspell.net +[fn:51] https://aspell.net -[fn:51] https://gohugo.io +[fn:52] https://gohugo.io -[fn:52] https://oxhugo.scripter.co +[fn:53] https://oxhugo.scripter.co -[fn:53] https://chrishayward.xyz/posts/ +[fn:54] https://chrishayward.xyz/posts/ -[fn:54] https://chrishayward.xyz/notes/ +[fn:55] https://chrishayward.xyz/notes/ -[fn:55] https://revealjs.com +[fn:56] https://revealjs.com -[fn:56] https://github.com/hexmode/ox-reveal +[fn:57] https://github.com/hexmode/ox-reveal -[fn:57] https://password-store.org +[fn:58] https://password-store.org -[fn:58] https://projectile.mx +[fn:59] https://projectile.mx -[fn:59] https://microsoft.github.io/language-server-protocol +[fn:60] https://microsoft.github.io/language-server-protocol -[fn:60] https://company-mode.github.io +[fn:61] https://company-mode.github.io -[fn:61] https://emacswiki.org/emacs/GoMode +[fn:62] https://emacswiki.org/emacs/GoMode -[fn:62] https://emacswiki.org/emacs/PythonProgrammingInEmacs +[fn:63] https://emacswiki.org/emacs/PythonProgrammingInEmacs -[fn:63] https://plantuml.com +[fn:64] https://plantuml.com -[fn:64] https://github.com/skuro/plantuml-mode +[fn:65] https://github.com/skuro/plantuml-mode -[fn:65] https://github.com/abo-abo/swiper +[fn:66] https://github.com/abo-abo/swiper -[fn:66] https://github.com/hlissner/emacs-doom-themes +[fn:67] https://github.com/hlissner/emacs-doom-themes -[fn:67] https://github.com/seagle0128/doom-modeline +[fn:68] https://github.com/seagle0128/doom-modeline -[fn:68] https://laptopmedia.com/laptop-specs/acer-nitro-5-an515-53-2 +[fn:69] https://laptopmedia.com/laptop-specs/acer-nitro-5-an515-53-2 diff --git a/flake.nix b/flake.nix index 088889f..082726e 100644 --- a/flake.nix +++ b/flake.nix @@ -46,6 +46,7 @@ ./modules/cachix.nix ./modules/firefox.nix ./modules/moonlight.nix + ./modules/teamviewer.nix inputs.home-manager.nixosModules.home-manager { home-manager.useGlobalPkgs = true; home-manager.useUserPackages = true; diff --git a/modules/teamviewer.nix b/modules/teamviewer.nix new file mode 100644 index 0000000..6870bfb --- /dev/null +++ b/modules/teamviewer.nix @@ -0,0 +1,8 @@ +# This file is controlled by /etc/dotfiles/README.org +{ pkgs, ... }: + +{ + environment.systemPackages = [ + pkgs.teamviewer + ]; +}