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:
- All the great people who have contributed code for the nix-community, with special mentions for (this list is unfairly incomplete):
<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/)
- [rycee](https://github.com/rycee)
@ -300,9 +299,8 @@
- [oddlama](https://github.com/oddlama)
</details>
- All the people who have inspired me with their configurations (sadly also highly incomplete):
<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)
- [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)
- [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/)
- [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>
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:
push:
branches:
- feat/router # or master, depending on your default branch
workflow_dispatch: # allows manual trigger
- feat/router
workflow_dispatch:
permissions:
contents: read
@ -27,14 +27,16 @@ jobs:
sudo apt-get update
sudo apt-get install -y emacs-nox elpa-htmlize
- name: Export Org to HTML
- name: Tangle files & export to HTML
run: |
emacs --batch \
--eval "(require 'org)" \
--eval "(setq org-confirm-babel-evaluate nil
org-html-validation-link nil
org-export-headline-levels 6
org-export-with-broken-links 'mark)" \
--visit=SwarselSystems.org \
--funcall org-babel-tangle
--funcall org-html-export-to-html
- name: Setup Pages
@ -43,7 +45,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: '.'
path: 'site'
deploy:
environment:

3
.gitignore vendored
View file

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

File diff suppressed because it is too large Load diff