mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2026-04-14 21:29:12 +02:00
Compare commits
7 commits
5e378178f2
...
d13c7057ab
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d13c7057ab | ||
|
|
7dd4bd24ea | ||
|
|
39bc0fcac3 | ||
|
|
d458dc2b10 | ||
|
|
7b0285e086 | ||
|
|
d0434a788e | ||
|
|
68bc5d5b3b |
4 changed files with 1159 additions and 469 deletions
8
.github/README.md
vendored
8
.github/README.md
vendored
|
|
@ -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 :)
|
||||||
|
|
|
||||||
10
.github/workflows/build-and-deploy.yml
vendored
10
.github/workflows/build-and-deploy.yml
vendored
|
|
@ -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
3
.gitignore
vendored
|
|
@ -7,5 +7,4 @@ result
|
||||||
*.bak
|
*.bak
|
||||||
.pre-commit-config.yaml
|
.pre-commit-config.yaml
|
||||||
.direnv
|
.direnv
|
||||||
/index.html
|
/site/
|
||||||
/style.css
|
|
||||||
|
|
|
||||||
1607
SwarselSystems.org
1607
SwarselSystems.org
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue