Skip to content

Commit 0722785

Browse files
committed
fix: blank codeblock lines
1 parent 64ed942 commit 0722785

File tree

9 files changed

+42
-15
lines changed

9 files changed

+42
-15
lines changed

assets/css/components/codeblock.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

assets/css/elements/codeblock.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ pre {
22
padding: 1rem;
33
}
44

5+
pre > details {
6+
cursor: pointer;
7+
}
8+
59
@media (prefers-color-scheme: light) {
610
pre {
711
background: rgba(0,0,0,0.025);

assets/images/not-by-ai.webp

-10.7 KB
Loading

blog/posts/create-rust-binaries-and-docker-images-with-nix.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -725,3 +725,5 @@ static binary to begin with. But it does mean I can't easily distribute it outsi
725725
`nix`, which is a bummer. Maybe I'll hunt for a workaround in the future. Right
726726
now, I'm not too keen into sinking a lot of time into something I won't benefit
727727
from.
728+
729+
<img style="width: 8rem;" src="/assets/images/not-by-ai.png">

blog/posts/deploying-nix-builds-on-fly-io.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -400,3 +400,5 @@ $ fly secrets set "APP_ECHO_ME=nix fixes this" -c fly.toml -a webecho
400400
[^1]: [`ryantm`'s NixOS manual](https://ryantm.github.io/nixpkgs/builders/images/dockertools)
401401

402402
[^2]: [Official NixOS manual for `streamLayeredImage`](https://nixos.org/manual/nixpkgs/unstable/#ssec-pkgs-dockerTools-streamLayeredImage)
403+
404+
<img style="width: 8rem;" src="/assets/images/not-by-ai.png">

blog/posts/esbuilds-build-api-is-pretty-cool.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -316,3 +316,5 @@ So now I'm able to use these as a dependency of another `nix` derivation. Neat!
316316
317317
> If you would like to check out the final result of everything in this article,
318318
> you may find it under the [`examples/esbuild-build-api`](https://github.com/sekunho/sekun.net/tree/main/examples/esbuild-build-api) directory.
319+
320+
<img style="width: 8rem;" src="/assets/images/not-by-ai.png">

blog/posts/manage-secrets-in-nixos.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -362,3 +362,5 @@ Which gives me this beautiful creation:
362362
<div>
363363
{{ img(src="/assets/images/posts/manage-secrets-in-nixos/emojied-leaderboard.png", alt="Screenshot of emojied.net's leaderboard") }}
364364
</div>
365+
366+
<img style="width: 8rem;" src="/assets/images/not-by-ai.png">

blog/posts/nixos-on-framework-desktop.md

Lines changed: 27 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ Coincidentally, my Framework Desktop finally arrived. It's a cute lil machine
3030
that I really love. Like any other machine I get my hands on (except macbooks
3131
lol), I install NixOS in it!
3232

33-
I also redid bits and pieces of my website. I think as time goes on, the more
34-
utilitarian I become. But this is probably as barebones as it gets in terms of
35-
design.
33+
I also redid bits and pieces of my website. I think I got bored of gruvbox (yeah
34+
I know, I know). As time goes on, the more utilitarian I become. But this is
35+
probably as barebones as it gets in terms of design.
3636

3737
---
3838

@@ -663,17 +663,31 @@ Here it asks us for the `zfs` pool's encryption passphrase. Nice.
663663

664664
## Conclusion
665665

666-
Well that was a lot. The nice thing is you more or less only have to set up the
667-
configuration once. After this, it's best you keep it somewhere easily accessible
668-
(like GitHub) so that you can download it, and just run the disk partitioning,
669-
and OS install.
666+
Documentation for ZFS in NixOS is still kind of sparse since I found answers
667+
in different places. It's still enough to put something together but not without
668+
effort.
670669

671-
I also like that there aren't as much "imperative" steps to setting up NixOS.
670+
The nice thing is you more or less only have to set up the configuration once.
671+
After this, it's best to keep it somewhere easily accessible (like `git`) so that
672+
you can download it, and just run `disko`, and `nixos-install`. I like that there
673+
aren't as much "imperative" steps to setting up NixOS. It's one of the major
674+
reasons why I've completely stopped distrohopping.
675+
676+
Managing KDE's configuration probably isn't the best experience even with the
677+
plasma manager project. One is better off with another DE if that's important.
678+
I'm just satisfied enough with KDE to not switch over to others yet. Plus I
679+
mostly use stock KDE anyway.
680+
681+
Finally, this little machine is also such a capable thing! KDE is so much more
682+
smoother vs my Ryzen 5950x + 3090ti back home. Well mainly because the Nvidia
683+
experience in Linux is horrible. Maybe I'll benchmark a bunch of stuff in one of
684+
these weekends.
672685

673686
---
674687

675688
So below are the complete files for `flake.nix`, `configuration.nix`, and `disk-config.nix`.
676-
Or checkout my configuration in [`sekunho/dotfiles`](https://github.com/sekunho/dotfiles).
689+
Or check out my configuration in [`sekunho/dotfiles`](https://github.com/sekunho/dotfiles)
690+
(if it's already there).
677691

678692
```nix
679693
# flake.nix
@@ -852,5 +866,7 @@ Or checkout my configuration in [`sekunho/dotfiles`](https://github.com/sekunho/
852866
}
853867
```
854868

855-
856-
<img style="width: 8rem;" src="/assets/images/not-by-ai.png">
869+
<picture>
870+
<source srcset="/assets/images/not-by-ai.webp" type="image/webp">
871+
<img style="width: 8rem;" src="/assets/images/not-by-ai.png">
872+
</picture>

flake.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)