merge emacs into the hive

This commit is contained in:
Jacob Janzen 2024-09-28 11:03:57 -05:00
parent 56e6cb39a0
commit da7a932923
11 changed files with 54 additions and 34 deletions

View file

@ -1,20 +1,25 @@
.PHONY: install update rollback .PHONY: install update rollback nixos-update nixos-install
SRCDIR = ./nixos SYSTEM = $(shell uname -n)
SRCDIR = ./$(SYSTEM)
DSTDIR = $(HOME) DSTDIR = $(HOME)
SOURCES := $(shell find -L $(SRCDIR)/ -type f) SOURCES := $(shell find -L $(SRCDIR)/ -type f)
CONFIGS := $(subst $(SRCDIR)/,$(DSTDIR)/,$(SOURCES:%.org=%)) CONFIGS := $(subst $(SRCDIR)/,$(DSTDIR)/,$(SOURCES:%.org=%))
UPDATE_TARGET :=
INSTALL_TARGET :=
ifeq ($(SYSTEM), nixos)
UPDATE_TARGET += nixos-update
INSTALL_TARGET += nixos-install
endif
all: update all: update
update: install update: install $(UPDATE_TARGET)
nix flake update $(DSTDIR)/.flake
cp $(DSTDIR)/.flake/flake.lock $(SRCDIR)/.flake
sudo nixos-rebuild switch --flake $(DSTDIR)/.flake
install: $(CONFIGS) install: $(CONFIGS) $(INSTALL_TARGET)
sudo nixos-rebuild switch --flake $(DSTDIR)/.flake
$(DSTDIR)/%: $(SRCDIR)/%.org $(DSTDIR)/%: $(SRCDIR)/%.org
mkdir -p $(dir $@) mkdir -p $(dir $@)
@ -23,3 +28,11 @@ $(DSTDIR)/%: $(SRCDIR)/%.org
$(DSTDIR)/%: $(SRCDIR)/% $(DSTDIR)/%: $(SRCDIR)/%
mkdir -p $(dir $@) mkdir -p $(dir $@)
cp $< $@ cp $< $@
nixos-update: install
nix flake update $(DSTDIR)/.flake
cp $(DSTDIR)/.flake/flake.lock $(SRCDIR)/.flake
sudo nixos-rebuild switch --flake $(DSTDIR)/.flake
nixos-install: $(CONFIGS)
sudo nixos-rebuild switch --flake $(DSTDIR)/.flake

View file

@ -1,25 +0,0 @@
#+title: Emacs Configuration
Load [[./force-custom-file.org][force-custom-file.el]] to ensure that =init.el= is not polluted by customizations.
#+begin_src emacs-lisp :tangle ~/.config/emacs/init.el :mkdirp yes
(load "~/.config/emacs/force-custom-file.el")
#+end_src
Load [[./package-setup.org][package-setup.el]] to allow for package installation.
#+begin_src emacs-lisp :tangle ~/.config/emacs/init.el :mkdirp yes
(load "~/.config/emacs/package-setup.el")
#+end_src
Load [[./user-interface.org][user-interface.el]] to clean up Emacs' user interface and make it look the way I like.
#+begin_src emacs-lisp :tangle ~/.config/emacs/init.el :mkdirp yes
(load "~/.config/emacs/user-interface.el")
#+end_src
Load [[./tools.org][tools.el]] to add functionality to Emacs.
#+begin_src emacs-lisp :tangle ~/.config/emacs/init.el :mkdirp yes
(load "~/.config/emacs/tools.el")
#+end_src
Load [[./languages.org][languages.el]] to add language and language server protocol support.
#+begin_src emacs-lisp :tangle ~/.config/emacs/init.el :mkdirp yes
(load "~/.config/emacs/languages.el")
#+end_src

View file

@ -1 +0,0 @@
../../common/.config/emacs

View file

@ -6,6 +6,7 @@ This is the core of my program configuration. This file installs programs that d
{ {
imports = [ imports = [
./emacs/core.nix
./fastfetch.nix ./fastfetch.nix
./foot.nix ./foot.nix
./git.nix ./git.nix

View file

@ -0,0 +1,25 @@
#+title: Emacs Configuration
#+begin_src nix :tangle ~/.flake/home/programs/emacs/core.nix :mkdirp yes
{ config, pkgs, ... }:
{
home.file = {
"./.config/emacs/force-custom-file.el".source = ./force-custom-file.el;
"./.config/emacs/package-setup.el".source = ./package-setup.el;
"./.config/emacs/user-interface.el".source = ./user-interface.el;
"./.config/emacs/tools.el".source = ./tools.el;
"./.config/emacs/languages.el".source = ./languages.el;
};
programs.emacs = {
enable = true;
extraConfig = ''
(load "~/.config/emacs/force-custom-file.el")
(load "~/.config/emacs/package-setup.el")
(load "~/.config/emacs/user-interface.el")
(load "~/.config/emacs/tools.el")
(load "~/.config/emacs/languages.el")
'';
};
}
#+end_src

View file

@ -139,3 +139,10 @@ Install YAML support and run =eglot= on YAML files.
:init :init
(add-hook 'yaml-mode-hook 'jj/eglot-setup)) (add-hook 'yaml-mode-hook 'jj/eglot-setup))
#+end_src #+end_src
* Nix
Install =nix= support and run =eglot= on =nix= files.
#+begin_src emacs-lisp :tangle ~/.config/emacs/languages.el :mkdirp yes
(use-package nix-mode
:mode "\\.nix\\'")
#+end_src