aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/assets/nix.webpbin0 -> 27256 bytes
-rw-r--r--src/data/projects.ts9
2 files changed, 8 insertions, 1 deletions
diff --git a/src/assets/nix.webp b/src/assets/nix.webp
new file mode 100644
index 0000000..3061b5c
--- /dev/null
+++ b/src/assets/nix.webp
Binary files differ
diff --git a/src/data/projects.ts b/src/data/projects.ts
index e338e05..39825e1 100644
--- a/src/data/projects.ts
+++ b/src/data/projects.ts
@@ -8,6 +8,7 @@ import todoListImg from "../assets/todolist.webp";
import speculaImg from "../assets/specula.webp";
import gitHubImg from "../assets/github.webp";
import siteImg from "../assets/site.webp";
+import nixImg from "../assets/nix.webp";
export interface Project {
name: string;
@@ -60,6 +61,12 @@ export const projects: Project[] = [
image: speculaImg,
},
{
+ name: "Nix",
+ description: "Exploring Nix to build a reproducible system configuration across all my devices.",
+ url: "https://github.com/schererleander/nix",
+ image: nixImg,
+ },
+ {
name: "Hackintosh",
description: "macOS on PC hardware using opencore",
url: "https://github.com/schererleander/opencore-config",
@@ -77,4 +84,4 @@ export const projects: Project[] = [
url: "https://github.com/schererleander/pyhton-ics-modifier",
image: gitHubImg
},
-]; \ No newline at end of file
+];