-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
345 additions
and
207 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Build and deploy docs | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
paths: | ||
- "docs/**/*" | ||
- ".github/workflows/docs.yml" | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Lix | ||
uses: DeterminateSystems/nix-installer-action@main | ||
with: | ||
source-url: https://install.lix.systems/lix/lix-installer-x86_64-linux | ||
logger: pretty | ||
diagnostic-endpoint: "" | ||
|
||
- name: Build Linux packages | ||
run: "nix build -L .#docs" | ||
|
||
- name: Upload Pages Artifact | ||
uses: "actions/upload-pages-artifact@v3" | ||
with: | ||
path: "result/" | ||
|
||
deploy: | ||
needs: "build" | ||
runs-on: "ubuntu-latest" | ||
|
||
permissions: | ||
pages: "write" | ||
id-token: "write" | ||
|
||
environment: | ||
name: "github-pages" | ||
url: "${{ steps.deployment.outputs.page_url }}" | ||
|
||
steps: | ||
- name: "Deploy to GitHub Pages" | ||
id: "deployment" | ||
uses: "actions/deploy-pages@v4" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[book] | ||
authors = ["Isabel Roses", "Robin Roses"] | ||
language = "en" | ||
multilingual = false | ||
src = "src" | ||
title = "dotfiles" | ||
|
||
[build] | ||
build-dir = "./dist" | ||
|
||
[output.html] | ||
default-theme = "latte" | ||
preferred-dark-theme = "mocha" | ||
git-repository-url = "https://dotfiles.isabelroses.com" | ||
git-repository-icon = "fa-code-fork" | ||
cname = "dotfiles.isabelroses.com" | ||
additional-css = ["./theme/catppuccin.css", "./theme/catppuccin-alerts.css"] | ||
|
||
[preprocessor.alerts] |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Summary | ||
|
||
[Introduction](README.md) | ||
|
||
# Config | ||
|
||
- [installation](config/installation.md) | ||
- [layout](config/layout.md) | ||
- [shortcuts](config/shortcuts.md) | ||
- [templates](config/templates.md) | ||
- [adding systems](config/adding-systems.md) | ||
- [adding users](config/adding-users.md) | ||
|
||
# Further Reading | ||
|
||
- [further reading](further-reading.md) | ||
|
||
# Misc | ||
|
||
- [previews](misc/previews.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
The systems are configured in `/systems/<hostname>`. | ||
|
||
To set up a system configuration it must be declared in `/systems/default.nix`. | ||
|
||
- arch: | ||
|
||
- default: "x86_64" | ||
- options: "x86_64", "aarch64" | ||
|
||
- target: | ||
|
||
- default: "nixos" | ||
- options: "nixos", "darwin", "iso" | ||
|
||
- system: | ||
|
||
- default: `constructSystem config.hosts.<hostname>.target config.hosts.<hostname>.arch` | ||
- note: This is a function that constructs the system configuration, it will make `x86_64-linux` by from the `target` and `arch` attributes or `aarch64-darwin` | ||
|
||
- deployable: | ||
|
||
- default: false | ||
|
||
- modules: | ||
|
||
- default: "[ ]" | ||
- options: | ||
- laptop: for laptop type configurations | ||
- desktop: for desktop type configurations | ||
- server: for server type configurations | ||
- wsl: for wsl systems | ||
- gaming: for systems that have a graphical interface | ||
- headless: for systems that do not have a graphical interface | ||
|
||
- specialArgs: | ||
- default: "{ }" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
The user side is configured in `/home/<user>`. | ||
|
||
To set up a user configuration it must be declared in | ||
`/modules/base/users/options.nix` and `/modules/base/users/<user>.nix` can be used for anything that is not preconfigured by `/modules/base/users/mkusers.nix`. |
Oops, something went wrong.