diff --git a/config.toml b/config.toml index 7b07141..e73a49c 100644 --- a/config.toml +++ b/config.toml @@ -36,5 +36,5 @@ menu = [ { name = "/about", url = "/about", weight = 4 }, ] repo_view = true -repo_url = "https://github.com/nrdxp/nrd.sh/tree/main/content" +repo_url = "https://github.com/nrdxp/nrd.sh/tree/main/content/" favicon = "/icon/favicon.png" diff --git a/content/blog/12-years.md b/content/blog/12-years.md index 730d4cd..5bee472 100644 --- a/content/blog/12-years.md +++ b/content/blog/12-years.md @@ -12,6 +12,9 @@ authorImage: "https://avatars.githubusercontent.com/u/34083928?v=4" authorTwitter: "nrdexp" date: "2024-10-11" category: "personal" +extra: + read_time: true + repo_view: true --- **Reader Advisory:** This post is sarcastic, and a bit raw. Those without a sense of humor, or an aversion to hard facts, venture no further. Also, these opinions are my own; subject to change, etc, etc. diff --git a/content/blog/NixOS Policy Breakdown.md b/content/blog/NixOS Policy Breakdown.md index 358edc8..bf9b6e5 100644 --- a/content/blog/NixOS Policy Breakdown.md +++ b/content/blog/NixOS Policy Breakdown.md @@ -11,6 +11,9 @@ authorImage: https://avatars.githubusercontent.com/u/34083928?v=4 authorTwitter: nrdxp52262 date: "2024-07-02" category: politics +extra: + read_time: true + repo_view: true --- This piece offers a perspective on recent NixOS project challenges from diff --git a/content/blog/NixOS-Flakes_and_KISS.md b/content/blog/NixOS-Flakes_and_KISS.md index 67c507f..06021e2 100644 --- a/content/blog/NixOS-Flakes_and_KISS.md +++ b/content/blog/NixOS-Flakes_and_KISS.md @@ -10,6 +10,9 @@ authorImage: https://avatars.githubusercontent.com/u/34083928?v=4 authorTwitter: nrdxp52262 date: "2020-12-19" category: dev +extra: + read_time: true + repo_view: true --- ## Introduction diff --git a/content/blog/_index.md b/content/blog/_index.md index 24fb26d..cc780eb 100644 --- a/content/blog/_index.md +++ b/content/blog/_index.md @@ -1,4 +1,5 @@ +++ title = "Blog" sort_by = "date" +insert_anchor_links = "heading" +++ diff --git a/content/blog/in-defense-of-the-disagreeable.md b/content/blog/in-defense-of-the-disagreeable.md index 65576d0..7118ed3 100644 --- a/content/blog/in-defense-of-the-disagreeable.md +++ b/content/blog/in-defense-of-the-disagreeable.md @@ -16,6 +16,9 @@ authorImage: https://avatars.githubusercontent.com/u/34083928?v=4 authorTwitter: nrdexp date: "2024-12-25" category: personal +extra: + read_time: true + repo_view: true --- This blog typically focuses on technical matters - software architecture, deployment strategies, and the occasional deep dive into systems design. While I've shared personal musings before, I've never ventured quite this deep into the waters of self-reflection and social commentary. diff --git a/content/blog/nix-to-eos.md b/content/blog/nix-to-eos.md index 31edd03..d2a8819 100644 --- a/content/blog/nix-to-eos.md +++ b/content/blog/nix-to-eos.md @@ -14,6 +14,9 @@ authorImage: https://avatars.githubusercontent.com/u/34083928?v=4 authorTwitter: nrdexp date: "2024-12-04" category: dev +extra: + read_time: true + repo_view: true --- This piece explores the evolution of store-based systems and our vision for their future. While I've aimed to make it accessible to those not intimately familiar with Nix, I assume some technical foundation—particularly an interest in software distribution at scale. If terms like "reproducible builds" or "supply chain security" don't pique your curiosity, what follows might feel rather academic. However, if you're intrigued by how we might tackle the growing complexity of software distribution while maintaining security and sanity, read on. diff --git a/content/blog/std-action.md b/content/blog/std-action.md index 3aaab19..c1bf322 100644 --- a/content/blog/std-action.md +++ b/content/blog/std-action.md @@ -13,6 +13,9 @@ authorImage: https://avatars.githubusercontent.com/u/34083928?v=4 authorTwitter: nrdxp52262 date: "2022-12-09" category: dev +extra: + read_time: true + repo_view: true --- ## CI Should be Simple diff --git a/content/blog/std.md b/content/blog/std.md index 326b345..d6fe9fe 100644 --- a/content/blog/std.md +++ b/content/blog/std.md @@ -12,6 +12,9 @@ authorImage: https://avatars.githubusercontent.com/u/34083928?v=4 authorTwitter: nrdxp52262 date: "2022-10-31" category: dev +extra: + read_time: true + repo_view: true --- ## Update: A Video is Worth 1000 Blogs diff --git a/sass/fonts.scss b/sass/fonts.scss new file mode 100644 index 0000000..7194e53 --- /dev/null +++ b/sass/fonts.scss @@ -0,0 +1,31 @@ +@font-face { + font-family: 'Jetbrains Mono'; + font-style: normal; + font-weight: 400; + src: url('fonts/JetbrainsMono/JetBrainsMono-Regular.ttf'), local('ttf'); + font-display: fallback; +} + +@font-face { + font-family: 'Jetbrains Mono'; + font-style: normal; + font-weight: 700; + src: url('fonts/JetbrainsMono/JetBrainsMono-Bold.ttf'), local('ttf'); + font-display: fallback; +} + +@font-face { + font-family: 'Space Grotesk'; + font-style: normal; + font-weight: 400; + src: url('fonts/SpaceGrotesk/SpaceGrotesk-Regular.ttf'), local('ttf'); + font-display: fallback; +} + +@font-face { + font-family: 'Space Grotesk'; + font-style: normal; + font-weight: 700; + src: url('fonts/SpaceGrotesk/SpaceGrotesk-Bold.ttf'), local('ttf'); + font-display: fallback; +}