Compare commits

..

7 commits

Author SHA1 Message Date
Leon Schwarzäugl
d13c7057ab
fix: build full ToC for web version
Some checks are pending
Build and Deploy / build (push) Waiting to run
Build and Deploy / deploy (push) Blocked by required conditions
2025-12-31 12:46:33 +01:00
Leon Schwarzäugl
7dd4bd24ea
docs: update readme 2025-12-31 12:35:50 +01:00
Leon Schwarzäugl
39bc0fcac3
docs: make page more mobile-friendly 2025-12-31 11:36:16 +01:00
Leon Schwarzäugl
d458dc2b10
docs: fix page build 2025-12-31 11:16:07 +01:00
Leon Schwarzäugl
7b0285e086
docs: add qol 2025-12-31 11:07:22 +01:00
Leon Schwarzäugl
d0434a788e
feat[docs]: add storage persistence 2025-12-31 10:59:14 +01:00
Leon Schwarzäugl
68bc5d5b3b
chore: remove generated deploy files 2025-12-31 10:28:09 +01:00
4 changed files with 1159 additions and 469 deletions

8
.github/README.md vendored
View file

@ -273,9 +273,8 @@
These are in random order (also known as 'the order in which I discovered them'). I would like to express my gratitude to: These are in random order (also known as 'the order in which I discovered them'). I would like to express my gratitude to:
- All the great people who have contributed code for the nix-community, with special mentions for (this list is unfairly incomplete):
<details> <details>
<summary>Click here to expand...</summary> <summary>The great people who have contributed code for the nix-community, with special mentions for (this list is unfairly incomplete)</summary>
- [guibou](https://github.com/guibou/) - [guibou](https://github.com/guibou/)
- [rycee](https://github.com/rycee) - [rycee](https://github.com/rycee)
@ -300,9 +299,8 @@
- [oddlama](https://github.com/oddlama) - [oddlama](https://github.com/oddlama)
</details> </details>
- All the people who have inspired me with their configurations (sadly also highly incomplete):
<details> <details>
<summary>Click here to expand...</summary> <summary>The people who have inspired me with their configurations (sadly also highly incomplete)</summary>
- [theSuess](https://github.com/theSuess) with their [home-manager](https://code.kulupu.party/thesuess/home-manager) - [theSuess](https://github.com/theSuess) with their [home-manager](https://code.kulupu.party/thesuess/home-manager)
- [hlissner](https://github.com/hlissner) with their [dotfiles](https://github.com/hlissner/dotfiles) - [hlissner](https://github.com/hlissner) with their [dotfiles](https://github.com/hlissner/dotfiles)
@ -315,7 +313,7 @@
- [EmergentMind](https://github.com/EmergentMind) with their [nix-config](https://github.com/EmergentMind/nix-config) - [EmergentMind](https://github.com/EmergentMind) with their [nix-config](https://github.com/EmergentMind/nix-config)
- [librephoenix](https://github.com/librephoenix) with their [nixos-config](https://github.com/librephoenix/nixos-config) - [librephoenix](https://github.com/librephoenix) with their [nixos-config](https://github.com/librephoenix/nixos-config)
- [Xe](https://github.com/Xe) with their [blog](https://xeiaso.net/blog/) - [Xe](https://github.com/Xe) with their [blog](https://xeiaso.net/blog/)
- [oddlama](https://github.com/oddlama) with their absolutely incredible [nix-config](https:/github.com/oddlama/nix-config) - [oddlama](https://github.com/oddlama) with their [nix-config](https:/github.com/oddlama/nix-config)
</details> </details>
If you feel that I forgot to pay you tribute for code that I used in this repository, please shoot me a message and I will fix it :) If you feel that I forgot to pay you tribute for code that I used in this repository, please shoot me a message and I will fix it :)

View file

@ -3,8 +3,8 @@ name: Build and Deploy
on: on:
push: push:
branches: branches:
- feat/router # or master, depending on your default branch - feat/router
workflow_dispatch: # allows manual trigger workflow_dispatch:
permissions: permissions:
contents: read contents: read
@ -27,14 +27,16 @@ jobs:
sudo apt-get update sudo apt-get update
sudo apt-get install -y emacs-nox elpa-htmlize sudo apt-get install -y emacs-nox elpa-htmlize
- name: Export Org to HTML - name: Tangle files & export to HTML
run: | run: |
emacs --batch \ emacs --batch \
--eval "(require 'org)" \ --eval "(require 'org)" \
--eval "(setq org-confirm-babel-evaluate nil --eval "(setq org-confirm-babel-evaluate nil
org-html-validation-link nil org-html-validation-link nil
org-export-headline-levels 6
org-export-with-broken-links 'mark)" \ org-export-with-broken-links 'mark)" \
--visit=SwarselSystems.org \ --visit=SwarselSystems.org \
--funcall org-babel-tangle
--funcall org-html-export-to-html --funcall org-html-export-to-html
- name: Setup Pages - name: Setup Pages
@ -43,7 +45,7 @@ jobs:
- name: Upload artifact - name: Upload artifact
uses: actions/upload-pages-artifact@v3 uses: actions/upload-pages-artifact@v3
with: with:
path: '.' path: 'site'
deploy: deploy:
environment: environment:

3
.gitignore vendored
View file

@ -7,5 +7,4 @@ result
*.bak *.bak
.pre-commit-config.yaml .pre-commit-config.yaml
.direnv .direnv
/index.html /site/
/style.css

File diff suppressed because it is too large Load diff