Compare commits

...

3 commits

Author SHA1 Message Date
Evie Litherland-Smith 290ee4da08 Add keep-going flag to Makefile nix build directive 2024-07-22 10:47:44 +01:00
Evie Litherland-Smith d0459b2024 autoUpgrade: set max jobs to 1, set keep-going flag 2024-07-22 10:45:00 +01:00
Evie Litherland-Smith d4c58e4698 Emacs: clear out some packages I don't need any more
Removed: page-break-lines, helpful, ace-window, link-hint,
consult-flyspell, embark (and associated), forge (part of magit
anyway), flymake-popon, aggressive-indent
2024-07-22 10:40:02 +01:00
3 changed files with 15 additions and 19 deletions

View file

@ -3,4 +3,4 @@
HOST := $(shell hostname) HOST := $(shell hostname)
build: build:
nix build .#nixosConfigurations.$(HOST).config.system.build.toplevel nix build --keep-going .#nixosConfigurations.$(HOST).config.system.build.toplevel

View file

@ -1,8 +1,7 @@
epkgs: epkgs:
with epkgs; [ with epkgs; [
# Theme
base16-theme
# UI # UI
base16-theme
all-the-icons all-the-icons
nerd-icons nerd-icons
nerd-icons-completion nerd-icons-completion
@ -11,12 +10,9 @@ with epkgs; [
nerd-icons-ibuffer nerd-icons-ibuffer
minions minions
ligature ligature
page-break-lines
helpful
which-key which-key
ace-window
link-hint
diff-hl diff-hl
# Completion # Completion
vertico vertico
orderless orderless
@ -26,36 +22,33 @@ with epkgs; [
corfu-terminal corfu-terminal
consult consult
consult-eglot consult-eglot
consult-flyspell
embark
embark-consult
flyspell-correct flyspell-correct
tempel tempel
# IDE # IDE
treesit-auto treesit-auto
magit magit
forge apheleia
flymake-popon envrc
rainbow-delimiters
flymake-shellcheck flymake-shellcheck
flymake-yamllint flymake-yamllint
flymake-clippy flymake-clippy
flymake-eslint flymake-eslint
apheleia markdown-mode
envrc pandoc-mode
rainbow-delimiters
aggressive-indent
python-docstring python-docstring
nix-mode nix-mode
lua-mode lua-mode
# Writing
# Org + LaTeX
org-roam org-roam
org-noter org-noter
citar citar
citar-embark citar-embark
markdown-mode
pandoc-mode
auctex auctex
htmlize htmlize
# Other # Other
password-store password-store
emms emms

View file

@ -48,6 +48,9 @@
randomizedDelaySec = "45min"; randomizedDelaySec = "45min";
flags = [ flags = [
"--accept-flake-config" "--accept-flake-config"
"--keep-going"
"--max-jobs"
"1"
"--option" "--option"
"extra-binary-caches" "extra-binary-caches"
"https://nix.xenia.me.uk" "https://nix.xenia.me.uk"