These are my notes on instaling NixOS 16.03 on a Lenovo ThinkPad X1 Carbon (4th generation) with an encrypted root file system using UEFI.
Most of this is scrambled from the following pages:
| #!/usr/bin/env bash | |
| # requirements: blueutil | |
| echo "Hold both 1+2 buttons on Wii Remote and wait for 30 seconds" | |
| # get MAC Address of Wii Remote | |
| MAC=`$(which blueutil) --inquiry 5 2>&1 | grep 'address' | awk '{print substr($2,1,17)}'` | |
| (killall -m 'blueutil*' 2>&1) >/dev/null | |
| echo "MAC: $MAC" |
These are my notes on instaling NixOS 16.03 on a Lenovo ThinkPad X1 Carbon (4th generation) with an encrypted root file system using UEFI.
Most of this is scrambled from the following pages:
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |