aboutsummaryrefslogtreecommitdiff
path: root/blog/content/notes
diff options
context:
space:
mode:
Diffstat (limited to 'blog/content/notes')
-rw-r--r--blog/content/notes/interesting-articles.gmi2
-rw-r--r--blog/content/notes/tech/misc-linux-stuff.gmi10
2 files changed, 11 insertions, 1 deletions
diff --git a/blog/content/notes/interesting-articles.gmi b/blog/content/notes/interesting-articles.gmi
index 73e8f881..2d9d3261 100644
--- a/blog/content/notes/interesting-articles.gmi
+++ b/blog/content/notes/interesting-articles.gmi
@@ -83,7 +83,7 @@ About janky browser applications and websites.
## Organizations
-=> [[https://charity.wtf/2024/07/24/pragmatism-neutrality-and-leadership/ Pragmatism, Neutrality and Leadership
+=> https://charity.wtf/2024/07/24/pragmatism-neutrality-and-leadership/ Pragmatism, Neutrality and Leadership
(The parts about "As a leader, your job is to succeed", "Companies with shitty cultures win all the time".) This article connects with:
=> https://hbr.org/2007/03/why-i-wrote-the-no-asshole-rule The no asshole rule book
diff --git a/blog/content/notes/tech/misc-linux-stuff.gmi b/blog/content/notes/tech/misc-linux-stuff.gmi
index a5521f1f..fd881dac 100644
--- a/blog/content/notes/tech/misc-linux-stuff.gmi
+++ b/blog/content/notes/tech/misc-linux-stuff.gmi
@@ -114,3 +114,13 @@ Then bring the tap0 interface up and configure IP addresses on both hosts.
# ip link set tap0 up
# ip addr add $IP/$NETMASK dev tap0
```
+
+## Using a Nix flake without using root to install Nix
+
+=> https://nixos.wiki/wiki/Nix_Installation_Guide#nix-user-chroot Follow the nix-user-chroot installation instructions in the Nix wiki.
+
+To enter an environment with the Nix flake configuration, run the following command:
+
+```
+nix --extra-experimental-features nix-command --extra-experimental-features flakes develop
+```