diff options
author | Alan Pearce | 2023-08-01 19:57:41 +0200 |
---|---|---|
committer | Alan Pearce | 2023-08-01 19:57:41 +0200 |
commit | 0ab4bcd25d3887adf2d29e89783b52551ed7cc11 (patch) | |
tree | 0e2407f1323df74b99d987bdc967b27378e2006c /post/nixos-on-nanopi-r5s.md | |
parent | a3c2d0cae3d5df069a71846debc998c937d0637a (diff) | |
download | website-0ab4bcd25d3887adf2d29e89783b52551ed7cc11.tar.lz website-0ab4bcd25d3887adf2d29e89783b52551ed7cc11.tar.zst website-0ab4bcd25d3887adf2d29e89783b52551ed7cc11.zip |
Fix formatting
Diffstat (limited to 'post/nixos-on-nanopi-r5s.md')
-rw-r--r-- | post/nixos-on-nanopi-r5s.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/post/nixos-on-nanopi-r5s.md b/post/nixos-on-nanopi-r5s.md index 83f25ef..7e466ae 100644 --- a/post/nixos-on-nanopi-r5s.md +++ b/post/nixos-on-nanopi-r5s.md @@ -14,10 +14,10 @@ From that SD card, I then flashed the same system onto the internal <abbr title= I had nix already installed on the <abbr title="Non-Volatile Memory Express">NVMe</abbr> <abbr title="Solid-State Drive">SSD</abbr> along with a home directory. I bind-mounted `/nix` and `/home` following the fstab I had previously set up: ```conf -UUID=replaceme /mnt ext4 relatime,lazytime 0 2 -/mnt/nix /nix none defaults,bind 0 0 -/mnt/srv /srv none defaults,bind 0 0 -/mnt/home /home none defaults,bind 0 0 +UUID=replaceme /mnt ext4 relatime,lazytime 0 2 +/mnt/nix /nix none defaults,bind 0 0 +/mnt/srv /srv none defaults,bind 0 0 +/mnt/home /home none defaults,bind 0 0 ``` I then created a user for myself using that home directory, I had full access to nix in the new Debian environment. This meant I had access to `nixos-install`. |