From 910783f3093e2cdb717a64f4695d0f9dacc6869f Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sat, 21 Aug 2021 19:06:26 +0000 Subject: [PATCH 1/3] [NixOS] Set LIBGL_ALWAYS_SOFTWARE=1 for raspberry pi --- nixos/raspberry-pi.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/nixos/raspberry-pi.nix b/nixos/raspberry-pi.nix index e34803e2..4af2ae7a 100644 --- a/nixos/raspberry-pi.nix +++ b/nixos/raspberry-pi.nix @@ -43,6 +43,13 @@ raspberrypi-eeprom ]; + environment = { + # This allows alacritty to run + extraInit = '' + export LIBGL_ALWAYS_SOFTWARE=1 + ''; + }; + nix = { autoOptimiseStore = true; gc = { From 90cd014561ff88ec0be2baf1195298b7f808580c Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sat, 21 Aug 2021 19:07:31 +0000 Subject: [PATCH 2/3] [Emacs] Disable a few things that don't set up cleanly --- dotfiles/emacs.d/README.org | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index a9d63c16..3853f090 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -3166,7 +3166,6 @@ Intero seems to be causing hangs, so it has been disabled `((python . t) (ruby . t) (octave . t) - (sqlite . t) (plantuml . t) ,@added-modes)))) @@ -3848,6 +3847,7 @@ alphanumeric characters only." *** forge #+begin_src emacs-lisp (use-package forge + :disabled t :after magit) #+end_src *** magithub @@ -4231,6 +4231,7 @@ crux-reopen-as-root-mode makes it so that any file owned by root will automatica ** erc #+BEGIN_SRC emacs-lisp (use-package erc + :disabled t :commands erc :config (progn @@ -4852,7 +4853,8 @@ I've disabled perspective because I just don't use it much. ** groovy-mode This also adds syntax highlighting for gradle #+BEGIN_SRC emacs-lisp -(use-package groovy-mode) +(use-package groovy-mode + :disabled t) #+END_SRC ** jsx-mode #+BEGIN_SRC emacs-lisp From 75c999288b5430a5faaccf2d233f16c7f70dc580 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sat, 21 Aug 2021 19:09:19 +0000 Subject: [PATCH 3/3] [NixOS] Remove jellyfin --- nixos/jellyfin.nix | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 nixos/jellyfin.nix diff --git a/nixos/jellyfin.nix b/nixos/jellyfin.nix deleted file mode 100644 index 9b4b4f6c..00000000 --- a/nixos/jellyfin.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ pkgs, ... }: -{ - services.jellyfin = { - enable = true; - openFirewall = true; - }; -}