merge emacs into the hive
This commit is contained in:
parent
56e6cb39a0
commit
da7a932923
11 changed files with 54 additions and 34 deletions
29
Makefile
29
Makefile
|
@ -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)
|
||||
|
||||
SOURCES := $(shell find -L $(SRCDIR)/ -type f)
|
||||
CONFIGS := $(subst $(SRCDIR)/,$(DSTDIR)/,$(SOURCES:%.org=%))
|
||||
|
||||
UPDATE_TARGET :=
|
||||
INSTALL_TARGET :=
|
||||
|
||||
ifeq ($(SYSTEM), nixos)
|
||||
UPDATE_TARGET += nixos-update
|
||||
INSTALL_TARGET += nixos-install
|
||||
endif
|
||||
|
||||
all: update
|
||||
|
||||
update: install
|
||||
nix flake update $(DSTDIR)/.flake
|
||||
cp $(DSTDIR)/.flake/flake.lock $(SRCDIR)/.flake
|
||||
sudo nixos-rebuild switch --flake $(DSTDIR)/.flake
|
||||
update: install $(UPDATE_TARGET)
|
||||
|
||||
install: $(CONFIGS)
|
||||
sudo nixos-rebuild switch --flake $(DSTDIR)/.flake
|
||||
install: $(CONFIGS) $(INSTALL_TARGET)
|
||||
|
||||
$(DSTDIR)/%: $(SRCDIR)/%.org
|
||||
mkdir -p $(dir $@)
|
||||
|
@ -23,3 +28,11 @@ $(DSTDIR)/%: $(SRCDIR)/%.org
|
|||
$(DSTDIR)/%: $(SRCDIR)/%
|
||||
mkdir -p $(dir $@)
|
||||
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
|
||||
|
|
|
@ -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
|
|
@ -1 +0,0 @@
|
|||
../../common/.config/emacs
|
|
@ -6,6 +6,7 @@ This is the core of my program configuration. This file installs programs that d
|
|||
|
||||
{
|
||||
imports = [
|
||||
./emacs/core.nix
|
||||
./fastfetch.nix
|
||||
./foot.nix
|
||||
./git.nix
|
||||
|
|
25
nixos/.flake/home/programs/emacs/core.nix.org
Normal file
25
nixos/.flake/home/programs/emacs/core.nix.org
Normal 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
|
|
@ -139,3 +139,10 @@ Install YAML support and run =eglot= on YAML files.
|
|||
:init
|
||||
(add-hook 'yaml-mode-hook 'jj/eglot-setup))
|
||||
#+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
|
Loading…
Add table
Reference in a new issue